coleslaw/themes/hyde/post.tmpl

28 lines
753 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}
{if $post.tags}
Tagged as {foreach $tag in $post.tags}
2014-08-27 14:08:48 -04:00
<a href="{$config.domain}/{$tag.url}">{$tag.name}</a>{nil}
2014-04-29 00:13:40 -04:00
{if not isLast($tag)},{sp}{/if}
{/foreach}
{/if}
</div>{\n}
<div class="date">{\n}
{if $post.date}
Written on {$post.date}
{/if}
</div>{\n}
</div>{\n}
<div class="article-content">{\n}
2013-01-01 20:16:28 -05:00
{$post.text |noAutoescape}
</div>{\n}
<div class="relative-nav">{\n}
2014-08-27 14:08:48 -04:00
{if $prev} <a href="{$config.domain}/{$prev.url}">Previous</a><br> {/if}{\n}
{if $next} <a href="{$config.domain}/{$next.url}">Next</a><br> {/if}{\n}
</div>{\n}
{/template}