| 1 |
<?php // $Id: comment.tpl.php,v 1.3 2008/05/25 17:43:26 brauerranch Exp $ ?>
|
| 2 |
<div class="comments comment<?php ($comment->new) ? print ' comment-new' : print ''; (isset($comment->status) && $comment->status == COMMENT_NOT_PUBLISHED) ? print ' comment-unpublished' : print ''; print ' '. $zebra; ?>">
|
| 3 |
|
| 4 |
<?php if ($submitted): ?>
|
| 5 |
<p class="submitted"><?php print $submitted ?></p>
|
| 6 |
<?php endif; ?>
|
| 7 |
|
| 8 |
<?php if ($comment->new): ?>
|
| 9 |
<span class="new"><?php print drupal_ucfirst($new) ?></span>
|
| 10 |
<?php endif; ?>
|
| 11 |
|
| 12 |
<?php print $picture ?>
|
| 13 |
|
| 14 |
<h3 class="comment_title"><?php print $title ?></h3>
|
| 15 |
|
| 16 |
<div class="content">
|
| 17 |
<?php print $content ?>
|
| 18 |
<?php if ($signature) { ?>
|
| 19 |
<div class="signature">
|
| 20 |
<?php print $signature ?>
|
| 21 |
</div>
|
| 22 |
<?php } ?>
|
| 23 |
</div>
|
| 24 |
|
| 25 |
<?php if ($links): ?>
|
| 26 |
<div class="comments_links"><?php print $links ?></div>
|
| 27 |
<?php endif; ?>
|
| 28 |
</div>
|