| 1 |
<?php
|
| 2 |
// $Id: comment.tpl.php,v 1.5 2008/11/23 22:16:19 shannonlucas Exp $
|
| 3 |
|
| 4 |
$comment_class = 'comment' . (($comment->new) ? ' comment-new' : '') .
|
| 5 |
' ' . $status . ' ' . $zebra;
|
| 6 |
$content_class = 'content' . (($comment->uid == $node->uid) ? ' original-author' : '');
|
| 7 |
?>
|
| 8 |
<div class="<?php print $comment_class; ?>">
|
| 9 |
<div class="<?php print $content_class; ?>">
|
| 10 |
<?php if (!empty($picture)) { print $picture; } ?>
|
| 11 |
<?php if ($comment->new): ?>
|
| 12 |
<span class="new"><?php print $new ?></span>
|
| 13 |
<?php endif; ?>
|
| 14 |
<?php if (!empty($title)) { ?><h3><?php print $title ?></h3><?php } ?>
|
| 15 |
<?php print $content ?>
|
| 16 |
<div class="clear"></div>
|
| 17 |
<?php if ($signature): ?>
|
| 18 |
<div class="user-signature clear-block">
|
| 19 |
<?php print $signature ?>
|
| 20 |
</div>
|
| 21 |
<?php endif; ?>
|
| 22 |
<div class="clear"></div>
|
| 23 |
</div>
|
| 24 |
<div class="comment-meta">
|
| 25 |
<span><strong><?php print $author; ?></strong> | <?php print $date; ?></span>
|
| 26 |
<?php if ($links) { print $links; } ?>
|
| 27 |
</div>
|
| 28 |
</div>
|