Parent Directory
|
Revision Log
|
Revision Graph
Updating HEAD for 7.x compatibility
| 1 | <?php // $Id: comment.tpl.php,v 1.1.2.1 2008/09/05 15:30:24 njt1982 Exp $ ?> |
| 2 | <div class="comment<?php print $comment->new ? ' comment-new' : ''; print $comment->status == COMMENT_NOT_PUBLISHED ? ' comment-unpublished' : ''; ?> clear-block"> |
| 3 | <?php print $picture ?> |
| 4 | |
| 5 | <?php if ($comment->new) : ?> |
| 6 | <a id="new"></a> |
| 7 | <span class="new"><?php print $new ?></span> |
| 8 | <?php endif; ?> |
| 9 | |
| 10 | <h3><?php print $title ?></h3> |
| 11 | |
| 12 | <div class="submitted"> |
| 13 | <?php print $submitted ?> |
| 14 | </div> |
| 15 | |
| 16 | <div class="content"> |
| 17 | <?php print $content ?> |
| 18 | </div> |
| 19 | |
| 20 | <?php print $links ?> |
| 21 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |