Parent Directory
|
Revision Log
|
Revision Graph
Adding files from DRUPAL-5 branch to HEAD, in preparation of a DRUPAL-6 branch.
| 1 | <div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; ?>"> |
| 2 | <?php if ($comment->new) : ?> |
| 3 | <a id="new"></a> |
| 4 | <span class="new"><?php print $new ?></span> |
| 5 | <?php endif; ?> |
| 6 | |
| 7 | <h3 class="title"><?php print $title ?></h3> |
| 8 | <?php print $picture ?> |
| 9 | <div class="author"><?php print $submitted ?></div> |
| 10 | <div class="content"><?php print $content ?></div> |
| 11 | <?php if ($picture) : ?> |
| 12 | <br class="clear" /> |
| 13 | <?php endif; ?> |
| 14 | <div class="links"><?php print $links ?></div> |
| 15 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |