-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlink.php
More file actions
42 lines (36 loc) · 912 Bytes
/
Copy pathlink.php
File metadata and controls
42 lines (36 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* 友情链接
*
* @package custom
*/
$this -> need('header.php');
?>
<div id="links">
<div id="page-header" style="background-image:url(<?php $this->fields->imgurl(); ?>);">
<div id="page-header-mask">
<div id="page-header-content">
<h2 id="page-content-title"><?php $this->title();?></h2>
</div>
</div>
</div>
<div id="links-content">
<h2>ともだち</h2>
<div class="friends">
<?php if (isset($this->options->plugins['activated']['Links'])) : ?>
<?php Links_Plugin::output("
<li class='clear'>
<a href='{url}' target='_blank'><img src='{image}' alt='{name}'/></a>
<div class='link-item-content'>
<h3>{name}</h3>
<span>{sort}</span>
<p>{description}</p>
</div>
</li>
", 0); ?>
<?php endif ?>
<?php $this->content();?>
</div>
</div>
</div>
<?php $this -> need('footer.php'); ?>