| 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 |
<br clear="all"/>
|
| 8 |
<div class="content">
|
| 9 |
<?php print $content ?>
|
| 10 |
<?php if ($signature && $comment->cid > 3443): // The highest comment ID before upgrading to Drupal 6 ?>
|
| 11 |
<div class="user-signature clear-block">
|
| 12 |
<?php print $signature ?>
|
| 13 |
</div>
|
| 14 |
<?php endif; ?>
|
| 15 |
</div>
|
| 16 |
<div class="links"><?php print $links; ?></div>
|
| 17 |
</div>
|