15 lines
509 B
Cheetah
15 lines
509 B
Cheetah
{namespace coleslaw.theme.hyde}
|
|
|
|
{template comment}
|
|
<li id="{$comment.id}" class="comment">
|
|
<div class="comment-author"
|
|
<a href="{$comment.author.url}">{$comment.author.name}</a>
|
|
</div><br>
|
|
<div class="comment-content">{$comment.content |noAutoescape}</div><br>
|
|
<div class="comment-meta">
|
|
<span class="comment-datetime">{$comment.timestamp}</span>
|
|
<span class="meta-sep">|</span>
|
|
<span class="comment-permalink"><a href="{$comment.url}">Permalink</a></span>
|
|
</div>
|
|
</li>
|
|
{/template}
|