| 1 |
<?php // $Id: comment.tpl.php,v 1.5 2008/09/09 13:14:22 jmburnz Exp $
|
| 2 |
/**
|
| 3 |
* @file
|
| 4 |
* comment.tpl.php
|
| 5 |
*
|
| 6 |
* Theme implementation for comments.
|
| 7 |
*
|
| 8 |
* @see template_preprocess_comment()
|
| 9 |
* @see theme_comment()
|
| 10 |
*/
|
| 11 |
?>
|
| 12 |
<div class="comment <?php print $comment_classes; ?>">
|
| 13 |
<div class="comment-inner-0"><div class="comment-inner-1">
|
| 14 |
<div class="comment-inner-2"><div class="comment-inner-3">
|
| 15 |
|
| 16 |
<?php if ($title): ?>
|
| 17 |
<h3 class="title"><?php print $title; if (!empty($new)): ?> <span class="new"><?php print $new; ?></span><?php endif; ?></h3>
|
| 18 |
<?php endif; ?>
|
| 19 |
|
| 20 |
<?php if ($unpublished): ?>
|
| 21 |
<div class="unpublished"><?php print t('Unpublished'); ?></div>
|
| 22 |
<?php endif; ?>
|
| 23 |
|
| 24 |
<div class="submitted"><?php print $submitted; ?></div>
|
| 25 |
|
| 26 |
<?php print $picture; ?>
|
| 27 |
|
| 28 |
<div class="content <?php print $picture ? 'with-picture' : 'no-picture' ; ?>">
|
| 29 |
|
| 30 |
<?php print $content; ?>
|
| 31 |
|
| 32 |
<?php if ($signature): ?>
|
| 33 |
<div class="user-signature clear">
|
| 34 |
<?php print $signature ?>
|
| 35 |
</div>
|
| 36 |
<?php endif; ?>
|
| 37 |
|
| 38 |
</div>
|
| 39 |
|
| 40 |
<?php if ($links): ?>
|
| 41 |
<div class="links clearfix"><?php print $links; ?></div>
|
| 42 |
<?php endif; ?>
|
| 43 |
|
| 44 |
</div></div>
|
| 45 |
</div></div>
|
| 46 |
</div> <!-- /comment -->
|