| 1 |
<?php // $Id: comment.tpl.php,v 1.2 2008/03/05 09:54:42 rapsli Exp $ ?>
|
| 2 |
|
| 3 |
|
| 4 |
<?php if ($comment->visibility == 1 || !module_exists('comment_og')){ ?>
|
| 5 |
|
| 6 |
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; ?>">
|
| 7 |
<div class="clearfix">
|
| 8 |
<?php if ($comment->new) : ?>
|
| 9 |
<a id="new"></a>
|
| 10 |
<span class="new"><?php print $new ?></span>
|
| 11 |
<?php endif; ?>
|
| 12 |
<?php print $picture ?>
|
| 13 |
<h3><?php print $title ?></h3>
|
| 14 |
<div class="submitted"><?php print $submitted ?></div>
|
| 15 |
<div class="content"><?php print $content ?></div>
|
| 16 |
</div>
|
| 17 |
<?php print $links ?>
|
| 18 |
</div>
|
| 19 |
|
| 20 |
|
| 21 |
<?php } ?>
|