-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathlink.php
More file actions
37 lines (36 loc) · 777 Bytes
/
Copy pathlink.php
File metadata and controls
37 lines (36 loc) · 777 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
<?php
/**
* 友情链接
*
* @package custom
*/
$this -> need('header.php');
?>
<div id="links">
<div id="links-content">
<h2>邻居</h2>
<div id="links-post">
<?php
$content = $this->content;
emotionContent($content,$this->options->themeUrl);
?>
</div>
<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}'/>
<div class='link-item-content'>
<h3>{name}</h3>
<!--<span>{sort}</span>
<p>{description}</p>-->
</div>
</a>
</li>
", 0); ?>
<?php endif ?>
</div>
</div>
</div>
<?php $this -> need('footer.php'); ?>