| 1 |
<li class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
|
| 2 |
<cite><?php print t('!username', array('!username' => theme('username', $comment))); ?></cite> Says:
|
| 3 |
<br />
|
| 4 |
<small class="commentmetadata">
|
| 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 |
</small>
|
| 8 |
<?php print $content ?>
|
| 9 |
<?php if ($signature): ?>
|
| 10 |
<div class="user-signature clear-block">
|
| 11 |
<?php print $signature ?>
|
| 12 |
</div>
|
| 13 |
<?php endif; ?>
|
| 14 |
<?php if ($links): ?><div class="links"><?php print $links ?></div><?php endif; ?>
|
| 15 |
</li>
|