| 1 |
<table width="100%" class="comment <?php print ($comment->new) ? 'comment-new' : '' ?>">
|
| 2 |
<!-- [SUBJECT] -->
|
| 3 |
<tr>
|
| 4 |
<td class="comment_info">
|
| 5 |
<div class="author">Author: <?php print $author ?></div>
|
| 6 |
<div class="comment_date"><?php print $date ?></div>
|
| 7 |
</td>
|
| 8 |
<td class="comment_picture"><?php print $picture ?></td>
|
| 9 |
</tr>
|
| 10 |
|
| 11 |
<tr>
|
| 12 |
<td colspan="3" class="comment_content">
|
| 13 |
<?php if ($comment->new) : ?>
|
| 14 |
<a id="new"></a>
|
| 15 |
<span class="new"><?php print $new ?></span>
|
| 16 |
<?php endif; ?>
|
| 17 |
<?php print $content ?> </td>
|
| 18 |
</tr>
|
| 19 |
<tr>
|
| 20 |
<td colspan="3" class="links"><?php print $links ?></td>
|
| 21 |
</tr>
|
| 22 |
</table>
|