coleslaw/themes/hyde/post.tmpl

24 lines
720 B
Cheetah
Raw Normal View History

{namespace coleslaw.theme.hyde}
{template post}
<div class="article-meta">{\n}
2012-09-12 10:16:57 -04:00
<h1 class="title">{$post.title}</h1>{\n}
<div class="tags">{\n}
2012-09-12 10:16:57 -04:00
Tagged as {foreach $tag in $post.tags}
<a href="../tag/{$tag}.html">{$tag}</a>
2012-08-21 22:06:14 -04:00
{if not isLast($tag)}, {/if}
{/foreach}
</div>{\n}
<div class="date">{\n}
2012-09-12 10:16:57 -04:00
Written on {$post.date}
</div>{\n}
</div>{\n}
<div class="article-content">{\n}
2012-09-12 10:16:57 -04:00
{$post.content |noAutoescape}
</div>{\n}
<div class="relative-nav">{\n}
{if $prev} <a href="{$config.domain}/posts/{$prev.slug}.html">Previous</a><br> {/if}{\n}
{if $next} <a href="{$config.domain}/posts/{$next.slug}.html">Next</a><br> {/if}{\n}
</div>{\n}
{/template}