| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?>
|
| 4 |
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print (isset($comment->status) && $comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
|
| 5 |
|
| 6 |
<div class="clear-block">
|
| 7 |
|
| 8 |
<?php if ($comment->new) : ?>
|
| 9 |
<span class="new"><?php print drupal_ucfirst($new) ?></span>
|
| 10 |
<?php endif; ?>
|
| 11 |
<h3><?php print $title ?></h3>
|
| 12 |
|
| 13 |
<?php if ($picture) print $picture; ?>
|
| 14 |
<?php if ($submitted): ?>
|
| 15 |
<span class="submitted_author"><?php print t('!username', array('!username' => theme('username', $comment))); ?></span>
|
| 16 |
<span class="submitted"><?php print t('Posted at ') . format_date($comment->timestamp, 'custom', "H:i o\\n D, m/d/Y"); ?></span>
|
| 17 |
<?php endif; ?>
|
| 18 |
|
| 19 |
<div class="content">
|
| 20 |
<?php print $content ?>
|
| 21 |
<?php if ($signature): ?>
|
| 22 |
<div class="clear-block">
|
| 23 |
<div>—</div>
|
| 24 |
<?php print $signature ?>
|
| 25 |
</div>
|
| 26 |
<?php endif; ?>
|
| 27 |
</div>
|
| 28 |
</div>
|
| 29 |
|
| 30 |
<?php if ($links): ?>
|
| 31 |
<div class="links"><?php print $links ?></div>
|
| 32 |
<?php endif; ?>
|
| 33 |
</div>
|