Parent Directory
|
Revision Log
|
Revision Graph
Made the location and style of Primary Links Configurable
| 1 | <?php |
| 2 | // $Id: $ |
| 3 | |
| 4 | /** |
| 5 | * @file comment.tpl.php |
| 6 | * |
| 7 | * @see template_preprocess_comment() |
| 8 | * @see theme_comment() |
| 9 | */ |
| 10 | ?> |
| 11 | <div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ' '. $status ?> clear-block"> |
| 12 | <?php print $picture ?> |
| 13 | |
| 14 | <?php if ($comment->new): ?> |
| 15 | <span class="new"><?php echo theme('mark') ?></span> |
| 16 | <?php endif; ?> |
| 17 | |
| 18 | <h3><?php print $title ?></h3> |
| 19 | |
| 20 | <div class="submitted"> |
| 21 | <?php print $submitted ?> |
| 22 | </div> |
| 23 | |
| 24 | <div class="content"> |
| 25 | <?php print $content ?> |
| 26 | <?php if ($signature): ?> |
| 27 | <div class="user-signature clear-block"> |
| 28 | <?php print $signature ?> |
| 29 | </div> |
| 30 | <?php endif; ?> |
| 31 | </div> |
| 32 | |
| 33 | <?php print $links ?> |
| 34 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |