diff --git a/themes/hyde/comment.tmpl b/themes/hyde/comment.tmpl new file mode 100644 index 0000000..cef874a --- /dev/null +++ b/themes/hyde/comment.tmpl @@ -0,0 +1,13 @@ +{namespace coleslaw.theme.hyde} + +{template comment} +
  • +
    {$comment.author}

    +
    {$comment.content |noAutoescape}

    +
    + {$comment.timestamp} + | + Permalink +
    +
  • +{/template} diff --git a/themes/hyde/post.tmpl b/themes/hyde/post.tmpl index 6d6c525..a825665 100644 --- a/themes/hyde/post.tmpl +++ b/themes/hyde/post.tmpl @@ -18,6 +18,12 @@ {if $next} Next
    {/if}{\n} {\n} {if $comments} -
    {$comments |noAutoescape}
    +
    +

    {length($comments)} comments

    +
      + {foreach $comment in $comments} + {call comment data="$comment" /}{\n} + {/foreach} +
    {/if} {/template}