| 1 |
<div class="clear-block comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; if ($author_comment) print ' author'; print ' '. $zebra; ?>">
|
| 2 |
|
| 3 |
<div class="picture span-3">
|
| 4 |
<?php print $picture ?>
|
| 5 |
</div>
|
| 6 |
|
| 7 |
<div class="comment-content">
|
| 8 |
<?php if ($submitted): ?>
|
| 9 |
<span class="username"><?php print theme('username', $comment); ?></span> <span class="date"><?php print t('wrote !date ago', array( '!date' => format_interval(time() - $comment->timestamp))); ?></span>
|
| 10 |
<?php endif; ?>
|
| 11 |
|
| 12 |
<?php if ($comment->new) : ?>
|
| 13 |
<a id="new"></a>
|
| 14 |
<span class="new"><?php print drupal_ucfirst($new) ?></span>
|
| 15 |
<?php endif; ?>
|
| 16 |
<div class="content">
|
| 17 |
<?php if ($title): ?><h3><?php print $title; ?></h3><? endif; ?>
|
| 18 |
<?php print $content ?>
|
| 19 |
</div>
|
| 20 |
|
| 21 |
<?php if ($links): ?>
|
| 22 |
<div class="links"><?php print $links ?></div>
|
| 23 |
<?php endif; ?>
|
| 24 |
</div>
|
| 25 |
</div>
|