| 1 |
<?php
|
| 2 |
// $Id: comment.tpl.php,v 1.2.2.1.2.3 2008/12/28 02:44:37 eric3 Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
* NoProb template file for comments.
|
| 7 |
*/
|
| 8 |
?>
|
| 9 |
|
| 10 |
<div class="comment<?php print($comment->new) ? ' comment-new' : ''; print ' '. $status ?> clear-block">
|
| 11 |
<?php print $picture ?>
|
| 12 |
<h3><?php print $title ?></h3>
|
| 13 |
<?php if ($comment->new) { ?>
|
| 14 |
<span class="new"><?php print $new ?></span>
|
| 15 |
<?php } ?>
|
| 16 |
<div class="content">
|
| 17 |
<?php print $content ?>
|
| 18 |
<?php if ($signature) { ?>
|
| 19 |
<div class="signature clear-block">
|
| 20 |
<?php print $signature ?>
|
| 21 |
</div>
|
| 22 |
<?php } ?>
|
| 23 |
</div>
|
| 24 |
<div class="meta clear-block">
|
| 25 |
<div class="meta-links"><?php print $links ?></div>
|
| 26 |
<div class="submitted">
|
| 27 |
<?php //print $submitted ?>
|
| 28 |
<?php print t('!date | !username', array('!username' => theme('username', $comment), '!date' => format_date($comment->timestamp))) ?>
|
| 29 |
</div>
|
| 30 |
</div>
|
| 31 |
</div>
|