-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.php
32 lines (22 loc) · 857 Bytes
/
sidebar.php
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
<div class="sidebar">
<ul>
<?php include"calender.php"; ?>
<div class="hh"></div>
<li>
<div class="panel">
<div class="tit">文章分类</div>
<?php $this->widget('Widget_Metas_Category_List')->listCategories('wrapClass=widget-list'); ?>
</div>
</li>
<div class="hh"></div>
<li>
<div class="panel">
<ul>
<div class="tit">最近文章</div>
<?php $this->widget('Widget_Contents_Post_Recent')
->parse('<li><a href="{permalink}">{title}</a></li>'); ?>
</ul>
</div>
</li>
</ul>
<!-- end .sidebar --></div>