comment.tpl.php 762 B

12345678910111213141516171819202122
  1. <div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
  2. <?php print $picture ?>
  3. <?php if ($submitted): ?>
  4. <span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $comment), '!date' => format_date($comment->timestamp))); ?></span>
  5. <?php endif; ?>
  6. <?php if ($comment->new) : ?>
  7. <a id="new"></a>
  8. <span class="new"><?php print drupal_ucfirst($new) ?></span>
  9. <?php endif; ?>
  10. <h3><?php print $title ?></h3>
  11. <div class="content">
  12. <?php print $content ?>
  13. </div>
  14. <?php if ($links): ?>
  15. <div class="links"><?php print $links ?></div>
  16. <?php endif; ?>
  17. </div>