-
Notifications
You must be signed in to change notification settings - Fork 34
/
sidebar.php
17 lines (16 loc) · 938 Bytes
/
sidebar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<aside id="sidebar" role="complementary">
<div id="post-2" class="widget">
<h3 class="widget-title">Recent Posts</h3>
<ul>
<?php $this->widget('Widget_Contents_Post_Recent', 'pageSize=4')
->parse('<li><a href="{permalink}">{title}</a></li>'); ?>
</ul>
</div><!--=E #post-2 -->
<div id="archive-2" class="widget">
<h3 class="widget-title">Archives</h3>
<ul>
<?php $this->widget('Widget_Contents_Post_Date', 'type=month&format=F Y')
->parse('<li><a href="{permalink}">{date}</a></li>'); ?>
</ul>
</div><!--=E #archive-2 -->
</aside><!--=E #sidebar -->