| 1 |
<?php
|
| 2 |
// $Id: comment.tpl.php,v 1.1.6.2 2008/11/28 06:14:30 andregriffin Exp $
|
| 3 |
?>
|
| 4 |
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ' '. $status; print ' '. $zebra; ?>">
|
| 5 |
|
| 6 |
<div class="comment-bar">
|
| 7 |
<?php if ($submitted): ?>
|
| 8 |
<span class="submitted"><?php print $submitted; ?></span>
|
| 9 |
<?php endif; ?>
|
| 10 |
|
| 11 |
<?php if ($comment->new) : ?>
|
| 12 |
<span class="new"><?php print drupal_ucfirst($new) ?></span>
|
| 13 |
<?php endif; ?>
|
| 14 |
</div>
|
| 15 |
|
| 16 |
<?php print $picture ?>
|
| 17 |
|
| 18 |
<h3><?php print $title ?></h3>
|
| 19 |
|
| 20 |
<div class="content">
|
| 21 |
<?php print $content ?>
|
| 22 |
<?php if ($signature): ?>
|
| 23 |
<div>—</div>
|
| 24 |
<?php print $signature ?>
|
| 25 |
<?php endif; ?>
|
| 26 |
</div>
|
| 27 |
|
| 28 |
<?php if ($links): ?>
|
| 29 |
<div class="links">
|
| 30 |
<?php print $links ?>
|
| 31 |
</div>
|
| 32 |
<?php endif; ?>
|
| 33 |
|
| 34 |
</div>
|