2007-01-31 15:49:26 +00:00
|
|
|
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print (isset($comment->status) && $comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2006-12-14 02:55:07 +00:00
|
|
|
<div class="clear-block">
|
|
|
|
<?php if ($submitted): ?>
|
|
|
|
<span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $comment), '!date' => format_date($comment->timestamp))); ?></span>
|
|
|
|
<?php endif; ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2006-12-14 02:55:07 +00:00
|
|
|
<?php if ($comment->new) : ?>
|
|
|
|
<a id="new"></a>
|
|
|
|
<span class="new"><?php print drupal_ucfirst($new) ?></span>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php print $picture ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2006-12-14 02:55:07 +00:00
|
|
|
<h3><?php print $title ?></h3>
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2006-12-14 02:55:07 +00:00
|
|
|
<div class="content">
|
|
|
|
<?php print $content ?>
|
2007-03-30 07:45:20 +00:00
|
|
|
<?php if ($signature): ?>
|
2007-04-01 05:04:20 +00:00
|
|
|
<div class="clear-block">
|
|
|
|
<div>—</div>
|
2007-03-30 07:45:20 +00:00
|
|
|
<?php print $signature ?>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
2006-12-14 02:55:07 +00:00
|
|
|
</div>
|
2006-10-29 13:21:46 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if ($links): ?>
|
|
|
|
<div class="links"><?php print $links ?></div>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|