| 1 |
<li class="comment <?php print $comment_classes; ?>">
|
| 2 |
<?php print $picture ?>
|
| 3 |
<span class="commentauthor"><?php print t('!username', array('!username' => theme('username', $comment))); ?></span>
|
| 4 |
<div class="comment-meta">
|
| 5 |
<?php print t('!date', array('!date' => format_date($comment->timestamp))); ?>
|
| 6 |
<?php if ($comment->new) : ?><a id="new"></a><span class="new"><?php print drupal_ucfirst($new) ?></span><?php endif; ?>
|
| 7 |
</div><!-- .comment-meta -->
|
| 8 |
<div class="comment-content">
|
| 9 |
<?php print $content ?>
|
| 10 |
</div><!-- .comment-content -->
|
| 11 |
<?php if ($links): ?><div class="links"><?php print $links ?></div><?php endif; ?>
|
| 12 |
</li>
|