| 1 |
<div class="c_comment comment<?php
|
| 2 |
print ' '. $zebra;
|
| 3 |
print ' comment-'. $zebra;
|
| 4 |
print ($comment->new ? ' comment-new' : '');
|
| 5 |
print ' comment-'. $status;
|
| 6 |
print ' comment_depth-'. $comment->depth;
|
| 7 |
?>">
|
| 8 |
<div class="c_comment-subStyle">
|
| 9 |
|
| 10 |
<h3 class="c_comment_title"><?php print $title ?></h3>
|
| 11 |
|
| 12 |
<?php if ($submitted): ?>
|
| 13 |
<span class="c_comment-submitted submitted"><?php
|
| 14 |
print
|
| 15 |
t('Published') .' '.
|
| 16 |
'<span class="username">' . t('!username', array('!username' => theme('username', $comment))) .'</span> ' .
|
| 17 |
'<span class="datetime">' . t('!datetime', array('!datetime' => format_date($comment->timestamp, 'custom', 'D, d/m/Y - H:i'))) . '</span>';
|
| 18 |
?></span>
|
| 19 |
<?php endif; ?>
|
| 20 |
|
| 21 |
<?php if (strlen($picture) > 50): ?>
|
| 22 |
<div class="c_user_picture">
|
| 23 |
<?php print $picture ?>
|
| 24 |
</div>
|
| 25 |
<?php endif; ?>
|
| 26 |
|
| 27 |
<?php if ($comment->new) : ?>
|
| 28 |
<span class="new"><?php print drupal_ucfirst($new) ?></span>
|
| 29 |
<?php endif; ?>
|
| 30 |
|
| 31 |
<div class="c_comment_content content">
|
| 32 |
<?php print $content ?>
|
| 33 |
<?php if ($signature): ?>
|
| 34 |
<div class="signature">
|
| 35 |
<?php print $signature ?>
|
| 36 |
</div>
|
| 37 |
<?php endif; ?>
|
| 38 |
</div>
|
| 39 |
|
| 40 |
<div class="c_clear"> </div>
|
| 41 |
|
| 42 |
<?php if ($links): ?>
|
| 43 |
<div class="c_comment_links c_links"><?php print $links ?></div>
|
| 44 |
<?php endif; ?>
|
| 45 |
|
| 46 |
</div>
|
| 47 |
</div>
|