33 lines
904 B
Cheetah
33 lines
904 B
Cheetah
{namespace coleslaw.theme.hyde}
|
|
|
|
{template index}
|
|
{foreach $post in $posts}
|
|
<div class="article-meta">
|
|
<a class="article-title" href="{$post.url}">{$post.title}</a>
|
|
<div class="date"> posted on {$post.date}</div>
|
|
<div class="article">{$post.content |noAutoescape}</div>
|
|
</div>
|
|
{/foreach}
|
|
<div id="relative-nav">
|
|
{if $prev} <a href="{$prev}">Previous</a> {/if}
|
|
{if $next} <a href="{$next}">Next</a> {/if}
|
|
</div>
|
|
{if $taglinks}
|
|
<div id="tagsoup">
|
|
<p>This blog covers
|
|
{foreach $taglink in $taglinks}
|
|
<a href="{$taglink.url |noAutoescape}">{$taglink.name}</a>
|
|
{if not isLast($taglink)}, {/if}
|
|
{/foreach}
|
|
</div>
|
|
{/if}
|
|
{if $monthlinks}
|
|
<div id="monthsoup">
|
|
<p>View posts from
|
|
{foreach $monthlink in $monthlinks}
|
|
<a href="{$monthlink.url |noAutoescape}">{$monthlink.name}</a>
|
|
{if not isLast($monthlink)}, {/if}
|
|
{/foreach}
|
|
</div>
|
|
{/if}
|
|
{/template}
|