| 1 |
<div class="comment <?php if ($new) echo "comment-new"; ?>">
|
| 2 |
<?php if ($picture) { print $picture; } ?>
|
| 3 |
<h3 class="title"><?php print $title; ?></h3>
|
| 4 |
<div class="info">
|
| 5 |
<?php if ($new) { ?><span class="new">new</span><?php } ?>
|
| 6 |
<span class="submitted">
|
| 7 |
<span class="user"><?php print theme('username', $comment); ?></span> -
|
| 8 |
<span class="date"><?php print format_date($comment->timestamp, $type="large"); ?></span>
|
| 9 |
</span>
|
| 10 |
</div>
|
| 11 |
<div class="content"><?php print $content; ?></div>
|
| 12 |
<?php if ($links) { ?><div class="links">» <?php print $links; ?></div><?php } ?>
|
| 13 |
<div class="clear"></div>
|
| 14 |
</div>
|