Parent Directory
|
Revision Log
|
Revision Graph
- Switched to a PHPTemplate stub function and added a customized comment.tpl.php.
| 1 | <div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; ?> clear-block"> |
| 2 | <?php print $picture ?> |
| 3 | |
| 4 | <?php if ($comment->new) : ?> |
| 5 | <a id="new"></a> |
| 6 | <span class="new"><?php print $new ?></span> |
| 7 | <?php endif; ?> |
| 8 | |
| 9 | <h3><?php print $title ?></h3> |
| 10 | |
| 11 | <div class="rating"> |
| 12 | <?php print $rating ?> |
| 13 | </div> |
| 14 | |
| 15 | <div class="submitted"> |
| 16 | <?php print $submitted ?> |
| 17 | </div> |
| 18 | |
| 19 | <div class="content"> |
| 20 | <?php print $content ?> |
| 21 | </div> |
| 22 | |
| 23 | <?php print $links ?> |
| 24 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |