Imported drupal-5.5
[drupal.git] / themes / garland / comment.tpl.php
blob6d3fb73c68db4ec21d9902ade12392b45c761d6f
1 <div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
3 <div class="clear-block">
4 <?php if ($submitted): ?>
5 <span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $comment), '!date' => format_date($comment->timestamp))); ?></span>
6 <?php endif; ?>
8 <?php if ($comment->new) : ?>
9 <a id="new"></a>
10 <span class="new"><?php print drupal_ucfirst($new) ?></span>
11 <?php endif; ?>
13 <?php print $picture ?>
15 <h3><?php print $title ?></h3>
17 <div class="content">
18 <?php print $content ?>
19 </div>
21 </div>
23 <?php if ($links): ?>
24 <div class="links"><?php print $links ?></div>
25 <?php endif; ?>
26 </div>