| 1 |
<?php
|
| 2 |
// $Id: comment.tpl.php,v 1.2 2007/11/28 22:36:44 zarabadoo Exp $
|
| 3 |
?>
|
| 4 |
<?php echo "<!-- START " . basename('comment.tpl') . " -->"; ?>
|
| 5 |
<div class="comment<?php if ($comment->status == COMMENT_NOT_PUBLISHED) print ' comment-unpublished'; ?><?php if ($new != '') print ' comment-new'; ?> <?php print $zebra; ?> hentry">
|
| 6 |
<h3 class="title entry-title"><?php print l($comment->subject, $base_path.'node/'.$comment->nid, array('rel' => 'bookmark self'), NULL, 'comment-'.$comment->cid); ?></h3>
|
| 7 |
<?php if ($new != ''): ?>
|
| 8 |
<span class="new"><?php print $new; ?></span>
|
| 9 |
<?php endif; ?>
|
| 10 |
<?php if ($picture) print $picture; ?>
|
| 11 |
<span class="submitted "><?php print t('Submitted on ') ?> <abbr class="published" title="<?php print format_date($comment->timestamp, 'custom', "Y-m-d").'T'.format_date($comment->timestamp, 'custom', "H:i:s"); ?>"><?php print format_date($comment->timestamp, 'custom', "F jS, Y"); ?></abbr> <?php print t('by'); ?> <?php print theme('username', $comment); ?></span>
|
| 12 |
<div class="content entry-content">
|
| 13 |
<?php print $content; ?>
|
| 14 |
</div>
|
| 15 |
<div class="links">
|
| 16 |
<?php print $links; ?>
|
| 17 |
|
| 18 |
</div>
|
| 19 |
</div>
|
| 20 |
<?php echo "<!-- END " . basename('comment.tpl') . " -->"; ?>
|
| 21 |
|