| 1 |
<div class="comment <?php print $comment_classes; ?>"><div class="comment-inner">
|
| 2 |
|
| 3 |
<?php if ($title): ?>
|
| 4 |
<h3 class="title"><?php print $title; if (!empty($new)): ?> <span class="new"><?php print $new; ?></span><?php endif; ?></h3>
|
| 5 |
<?php elseif (!empty($new)): ?>
|
| 6 |
<div class="new"><?php print $new; ?></div>
|
| 7 |
<?php endif; ?>
|
| 8 |
|
| 9 |
<?php if ($unpublished): ?>
|
| 10 |
<div class="unpublished"><?php print t('Unpublished'); ?></div>
|
| 11 |
<?php endif; ?>
|
| 12 |
|
| 13 |
<?php if ($picture) print $picture; ?>
|
| 14 |
|
| 15 |
<div class="submitted">
|
| 16 |
<?php print $submitted; ?>
|
| 17 |
</div>
|
| 18 |
|
| 19 |
<div class="content">
|
| 20 |
<?php print $content; ?>
|
| 21 |
</div>
|
| 22 |
|
| 23 |
<?php if ($links): ?>
|
| 24 |
<div class="links">
|
| 25 |
<?php print $links; ?>
|
| 26 |
</div>
|
| 27 |
<?php endif; ?>
|
| 28 |
|
| 29 |
</div></div> <!-- /comment-inner, /comment -->
|