summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Portlets/ArchivePortlet.tpl
blob: c576e9f5400e47c66916d944ec3173b009b92407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="portlet">

<h2 class="portlet-title">Archives</h2>

<div class="portlet-content">
<ul>
<com:TRepeater ID="MonthList" EnableViewState="false">
	<prop:ItemTemplate>
	<li><a href="<%# $this->Service->constructUrl('Posts.ListPost',array('time'=>date('Ym',$this->DataItem))) %>"><%# date('F Y',$this->DataItem) %></a></li>
	</prop:ItemTemplate>
</com:TRepeater>
</ul>
</div><!-- end of portlet-content -->

</div><!-- end of portlet -->