| 1 |
<?php // $Id: comment.tpl.php,v 1.1.2.1 2008/07/22 23:35:28 couzinhub Exp $ ?>
|
| 2 |
|
| 3 |
<div class="comment<?php if ($comment->status == COMMENT_NOT_PUBLISHED) print ' comment-unpublished'; ?>">
|
| 4 |
|
| 5 |
<?php if ($new != '') { ?>
|
| 6 |
<span class="new"><?php print $new; ?></span>
|
| 7 |
<?php } ?>
|
| 8 |
|
| 9 |
<h3 class="title"><?php print $title; ?></h3>
|
| 10 |
|
| 11 |
<div class="node-info">
|
| 12 |
|
| 13 |
<?php if ($submitted): ?>
|
| 14 |
<div class="submitted"><?php print t('Posted on ') . format_date($comment->timestamp, 'custom', "F jS, Y") . t(' by ') . theme('username', $comment); ?></div>
|
| 15 |
<?php endif; ?>
|
| 16 |
|
| 17 |
<?php if ($links): ?>
|
| 18 |
<div class="links">
|
| 19 |
<?php print $links; ?>
|
| 20 |
</div>
|
| 21 |
<?php endif; ?>
|
| 22 |
|
| 23 |
</div>
|
| 24 |
|
| 25 |
<div class="content">
|
| 26 |
<?php if ($picture): ?>
|
| 27 |
<?php print $picture; ?>
|
| 28 |
<?php endif; ?>
|
| 29 |
<?php print $content; ?>
|
| 30 |
<div class="clear-block"></div>
|
| 31 |
</div>
|
| 32 |
|
| 33 |
</div>
|