Skip to content

Commit

Permalink
Fixing archives nav.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcrowley committed Dec 23, 2009
1 parent a75012f commit 2241af6
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions templates/archives.html
Expand Up @@ -4,12 +4,8 @@
<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}
<li>{if $newer}<a href="{$newer}">{/if}&laquo; Newer{if $newer}</a>{/if}</li>
<li>{if $older}<a href="{$older}">{/if}Older &raquo;{if $older}</a>{/if}</li>
</ul>
{else}
<h1>Archives</h1>
Expand Down

0 comments on commit 2241af6

Please sign in to comment.