| 1 |
<div class="comment<?php if (isset($comment->status) && $comment->status == COMMENT_NOT_PUBLISHED) print ' comment-unpublished'; print ($zebra ? ' comment-'.$zebra : ''); ?>">
|
| 2 |
<?php if ($new != '') { ?><span class="new"><?php print $new; ?></span><?php } ?>
|
| 3 |
|
| 4 |
<div class="comment-top">
|
| 5 |
<?php print $picture; ?>
|
| 6 |
<h3 class="title"><?php print $title; ?></h3>
|
| 7 |
<?php if ($submitted): ?>
|
| 8 |
<span class="submitted"><?php print $submitted; ?></span>
|
| 9 |
<?php endif; ?>
|
| 10 |
</div>
|
| 11 |
<div class="content"><?php print $content; ?></div>
|
| 12 |
<?php if ($signature): ?>
|
| 13 |
<div class="signature">
|
| 14 |
<?php print $signature ?>
|
| 15 |
</div>
|
| 16 |
<?php endif; ?>
|
| 17 |
<div class="hr"><span></span></div>
|
| 18 |
<div class="links"><?php print $links; ?></div>
|
| 19 |
</div>
|