From 664bbcbb20fbe9c0bdf4e4f1c258fbba8bc79475 Mon Sep 17 00:00:00 2001 From: Penny Leach Date: Sat, 24 Jun 2006 21:40:51 +1200 Subject: [PATCH] made a new template for comments that goes to a max of 50px indenting --- templates/sgn2.0/comments.tpl | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 templates/sgn2.0/comments.tpl diff --git a/templates/sgn2.0/comments.tpl b/templates/sgn2.0/comments.tpl new file mode 100644 index 0000000..4470a11 --- /dev/null +++ b/templates/sgn2.0/comments.tpl @@ -0,0 +1,31 @@ +{foreach from=$comments item=comment name="comments"} + +
+
{$comment.body}
+
+ #{$comment.trace} + + {if $comment.email} + {$comment.author|@default:$CONST.ANONYMOUS} + {else} + {$comment.author|@default:$CONST.ANONYMOUS} + {/if} + + {if $comment.url} + ({$CONST.HOMEPAGE}) + {/if} + {$CONST.ON} + {$comment.timestamp|@formatTime:$CONST.DATE_FORMAT_SHORT} + + {if $entry.is_entry_owner} + ({$CONST.DELETE}) + {/if} + {if $entry.allow_comments} + ({$CONST.REPLY}) +
+ {/if} +
+
+{foreachelse} +
{$CONST.NO_COMMENTS}
+{/foreach} -- 2.39.5