summaryrefslogtreecommitdiff
path: root/themes/engines/phptemplate/comment.tpl.php
blob: d9dc3fd360338e465c554fb2251b3893c5d654e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; ?> clear-block">
  <?php if ($comment->new) : ?>
  <a id="new"></a>
  <span class="new"><?php print $new ?></span>
  <?php endif; ?>

  <div class="title"><?php print $title ?></div>
  <?php print $picture ?>
  <div class="author"><?php print $submitted ?></div>
  <div class="content"><?php print $content ?></div>
  <div class="links"><?php print $links ?></div>
</div>