Parent Directory
|
Revision Log
|
Revision Graph
First commit,The DuoFirtility Theme Fixed width 2 colum
| 1 | |
| 2 | <div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>"> |
| 3 | |
| 4 | <?php print $picture ?> |
| 5 | |
| 6 | <?php if ($comment->new): ?> |
| 7 | <a id="new"></a> |
| 8 | <span class="new"><?php print drupal_ucfirst($new) ?></span> |
| 9 | <?php endif; ?> |
| 10 | |
| 11 | <h3 class="comment-title"><?php print $title ?></h3> |
| 12 | |
| 13 | <?php if ($submitted): ?> |
| 14 | <span class="submitted"> |
| 15 | <?php print t('!date — !username', array('!date' => format_date($comment->timestamp), '!username' => theme('username', $comment))); ?> |
| 16 | </span> |
| 17 | <?php endif; ?> |
| 18 | |
| 19 | <div class="content"> |
| 20 | <?php print $content ?> |
| 21 | |
| 22 | </div> |
| 23 | |
| 24 | <?php if ($links): ?> |
| 25 | <div class="links noprint"><?php print $links ?></div> |
| 26 | <?php endif; ?> |
| 27 | |
| 28 | </div> |
| 29 | |
| 30 |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |