public
Description: Command-line blog engine
Homepage: http://rcrowley.org/2008/09/03/bashpress
Clone URL: git://github.com/rcrowley/bashpress.git
bashpress / templates / archives.html
100644 18 lines (17 sloc) 0.382 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{assign var="title" value="$date"}
{include file="_head.html"}
<h1 class="archives">{$date}</h1>
{include file=".posts/$date.html"}
<ul>
{if $newer}
<li><a href="{$newer}">&laquo; Newer</a></li>
{/if}
{if $older}
<li><a href="{$older}">Older &raquo;</a></li>
{/if}
</ul>
</div>
<div class="nav">
<p>Elsewhere in time:</p>
{include file=".months.html"}
{include file="_foot.html"}