| 1 |
<?php
|
| 2 |
// $Id: comment.tpl.php,v 1.2 2008/08/17 10:32:22 hswong3i Exp $
|
| 3 |
?>
|
| 4 |
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ' '. $status ?> clear-block">
|
| 5 |
<h3 class="title"><?php print $title ?></h3>
|
| 6 |
<div class="meta meta-header">
|
| 7 |
<?php if ($picture): print $picture; endif; ?>
|
| 8 |
<?php if ($submitted): ?><div class="submitted"><?php print $submitted ?></div><?php endif; ?>
|
| 9 |
</div>
|
| 10 |
<div class="content">
|
| 11 |
<?php print $content ?>
|
| 12 |
<?php if ($signature): ?><div class="user-signature clear-block"><?php print $signature ?></div><?php endif; ?>
|
| 13 |
<div class="meta meta-footer">
|
| 14 |
<?php if ($links): ?><?php print $links ?><?php endif; ?>
|
| 15 |
</div>
|
| 16 |
</div>
|
| 17 |
</div>
|