| 1 |
<div class="comment <?php print ($comment->new) ? 'comment-new' : '' ?>">
|
| 2 |
<?php if ($comment->new) : ?>
|
| 3 |
<a id="new"></a>
|
| 4 |
<span class="new"><?php print $new ?></span>
|
| 5 |
<?php endif; ?>
|
| 6 |
|
| 7 |
<h3 class="title"><?php print $title ?></h3>
|
| 8 |
<?php print $picture ?>
|
| 9 |
<div class="content"><?php print $content ?></div>
|
| 10 |
<?php if ($picture) : ?>
|
| 11 |
<span class="clear"></span>
|
| 12 |
<?php endif; ?>
|
| 13 |
<div class="info"><?php print theme('username', $comment) . ' – ' . str_replace('-', ' – ', format_date($comment->timestamp)) ?></div>
|
| 14 |
<div class="links"><?php print $links ?></div>
|
| 15 |
</div>
|