| 1 |
<div id="comment-<?php print $comment->cid; ?>" class="comment<?php print ($comment->new) ? ' comment-new' : ''; print (isset($comment->status) && $comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
|
| 2 |
<div class="post_left">
|
| 3 |
<div class="date">
|
| 4 |
<span class="post-month">
|
| 5 |
<?php print date('M', $comment->timestamp); ?>
|
| 6 |
</span>
|
| 7 |
<span class="post-day">
|
| 8 |
<?php print date('d', $comment->timestamp); ?>
|
| 9 |
</span>
|
| 10 |
</div>
|
| 11 |
</div>
|
| 12 |
<div class="post_right">
|
| 13 |
<div class="post_header">
|
| 14 |
<h3 class="titleh3">
|
| 15 |
<?php print $title; ?>
|
| 16 |
</h3>
|
| 17 |
<?php if ($comment->new) { print '<a id="new"></a>' . '<span class="new">' . drupal_ucfirst($new) .'</span>'; } ?>
|
| 18 |
</div>
|
| 19 |
<?php if ($links) { print '<div class="comment_icon"></div><div class="post-tags">' . $links . '</div>'; } ?>
|
| 20 |
<div class="post_content">
|
| 21 |
<?php print $picture ?>
|
| 22 |
<?php print $content; ?>
|
| 23 |
<div class="post_bottom">
|
| 24 |
<?php print t('by') . ' ' . $comment->name; ?>
|
| 25 |
</div>
|
| 26 |
<div class="clear-block clear">
|
| 27 |
</div>
|
| 28 |
</div>
|
| 29 |
</div>
|
| 30 |
</div>
|