summaryrefslogtreecommitdiff
path: root/modules/comment/views/comment.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/comment/views/comment.html.php')
-rw-r--r--modules/comment/views/comment.html.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/comment/views/comment.html.php b/modules/comment/views/comment.html.php
new file mode 100644
index 00000000..2b306404
--- /dev/null
+++ b/modules/comment/views/comment.html.php
@@ -0,0 +1,11 @@
+<? defined("SYSPATH") or die("No direct script access."); ?>
+<li id="gComment-<?= $comment->id; ?>">
+ <p>
+ <a href="#" class="gAuthor"><?= $comment->author ?></a>
+ <?= comment::format_elapsed_time($comment->datetime) ?>,
+ <span class="gUnderstate"><?= strftime('%c', $comment->datetime) ?></span>
+ </p>
+ <div>
+ <?= $comment->text ?>
+ </div>
+</li>