| 1 |
<div class="comment<?php if ($comment->status == COMMENT_NOT_PUBLISHED) print ' comment-unpublished'; ?>">
|
| 2 |
<?php if ($new != ''): ?>
|
| 3 |
<span class="new"><?php print $new; ?></span>
|
| 4 |
<?php endif; ?>
|
| 5 |
<h3 class="title"><?php print $title; ?></h3>
|
| 6 |
<?php if ($picture) print $picture; ?>
|
| 7 |
<span class="submitted"><?php print t('Submitted on ') . format_date($comment->timestamp, 'custom', 'F jS, Y') . t(' by '); ?> <?php print theme('username', $comment); ?></span>
|
| 8 |
<div class="content">
|
| 9 |
<?php print $content ?>
|
| 10 |
<?php if ($signature): ?>
|
| 11 |
<div class="user-signature clear-block">
|
| 12 |
<?php print $signature ?>
|
| 13 |
</div>
|
| 14 |
<?php endif; ?>
|
| 15 |
</div>
|
| 16 |
<div class="links">
|
| 17 |
<?php print $links; ?>
|
| 18 |
</div>
|
| 19 |
</div>
|