24 lines
673 B
Cheetah
24 lines
673 B
Cheetah
|
## -*- coding: utf-8 -*-
|
||
|
<%inherit file="base.tmpl"/>
|
||
|
|
||
|
|
||
|
|
||
|
<%block name="content">
|
||
|
<article class="listpage">
|
||
|
<header>
|
||
|
<h1>Archive</h1>
|
||
|
</header>
|
||
|
<ul class="postlist">
|
||
|
% for year in sorted(tuple(archive.keys()), reverse=True):
|
||
|
<li style="list-style-type:none">${year|h} (${len(archive[year])}):
|
||
|
</li><hr>
|
||
|
<ul>
|
||
|
% for post in sorted(archive[year],key=lambda x: x.date, reverse=True):
|
||
|
<li style="list-style-type:disc"><p>${post.date.strftime("%d %B %Y")} » <a href="${post.permalink()}">${post.title()|h}</a></p></li>
|
||
|
% endfor
|
||
|
</ul>
|
||
|
|
||
|
% endfor
|
||
|
</ul>
|
||
|
</article>
|
||
|
</%block>
|