| 1 |
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : '';?> clear-block">
|
| 2 |
<?php if ($picture) {
|
| 3 |
print $picture;
|
| 4 |
} ?>
|
| 5 |
<h3 class="title"><?php print $title; ?></h3><?php if ($new != '') { ?><span class="new"><?php print $new; ?></span><?php } ?>
|
| 6 |
<div class="submitted"><?php print $submitted; ?></div>
|
| 7 |
<div class="content"><?php print $content;?>
|
| 8 |
<?php if ($signature && $comment->cid > 3443): // The highest comment ID before upgrading to Drupal 6 ?>
|
| 9 |
<div class="user-signature clear-block">
|
| 10 |
<?php print $signature ?>
|
| 11 |
</div>
|
| 12 |
<?php endif; ?></div>
|
| 13 |
<div class="links">» <?php print $links; ?></div>
|
| 14 |
</div>
|