summaryrefslogtreecommitdiff
path: root/templates/comments_display.tmpl
diff options
context:
space:
mode:
authorSimon McVittie <smcv@ http://smcv.pseudorandom.co.uk/>2008-11-18 10:17:18 +0000
committerSimon McVittie <smcv@ http://smcv.pseudorandom.co.uk/>2008-12-11 21:14:02 +0000
commit3d4aa065d6a689a017c98e7ea8b80da0b65ae361 (patch)
treefbea950b7fc2098e039366bbd6c20fc7deec23a2 /templates/comments_display.tmpl
parent3c9ccb406b2260c149be387508a097fe6fdb3c93 (diff)
postcomment: Rename plugin to comments, use *._comment files
The PageSpec is still called "postcomment" since that's what it means.
Diffstat (limited to 'templates/comments_display.tmpl')
-rw-r--r--templates/comments_display.tmpl24
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/comments_display.tmpl b/templates/comments_display.tmpl
new file mode 100644
index 000000000..04e0613e0
--- /dev/null
+++ b/templates/comments_display.tmpl
@@ -0,0 +1,24 @@
+<div class="comments-display">
+
+<div class="comments-header">
+Posted by
+<TMPL_IF NAME="AUTHOR">
+<span class="author">
+<TMPL_IF NAME="AUTHORURL">
+<a href="<TMPL_VAR NAME=AUTHORURL>"><TMPL_VAR NAME=AUTHOR></a>
+<TMPL_ELSE>
+<TMPL_VAR NAME=AUTHOR>
+</TMPL_IF>
+</span>
+</TMPL_IF>
+
+(<TMPL_VAR CTIME>)
+</div>
+
+<div class="comments-subject"><TMPL_VAR TITLE></div>
+
+<div class="inlinecontent">
+<TMPL_VAR CONTENT>
+</div>
+
+</div><!--.comments-display-->