| 1 |
<div id="comment-<?php print $comment->cid ?>" class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ' '. $status ?> <?php print $zebra ?> clear-block">
|
| 2 |
<div class="author">
|
| 3 |
<?php print $picture ?>
|
| 4 |
<div class="name"><?php print $author ?></div>
|
| 5 |
<div class="submitted"><?php print format_date($comment->timestamp, 'custom', 'D, j F, Y - H:i'); ?></div>
|
| 6 |
</div>
|
| 7 |
|
| 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 |
|
| 17 |
<div class="control-links clear-block">
|
| 18 |
<?php print $links ?>
|
| 19 |
</div>
|
| 20 |
</div>
|