comment.tpl.php

Same filename in this branch
  1. 6.x drupal-6.x/modules/comment/comment.tpl.php
  2. 6.x drupal-6.x/themes/bluemarine/comment.tpl.php
  3. 6.x drupal-6.x/themes/garland/comment.tpl.php
  4. 6.x drupal-6.x/themes/pushbutton/comment.tpl.php
1 theme call to comment.tpl.php
theme_comment_view in drupal-6.x/modules/comment/comment.module
Themes a single comment and related items.

Archivo

drupal-6.x/themes/bluemarine/comment.tpl.php
View source
  1. <?php
  2. ?>
  3. <div class="comment<?php print ' '. $status; ?>">
  4. <?php if ($picture) {
  5. print $picture;
  6. } ?>
  7. <h3 class="title"><?php print $title; ?></h3><?php if ($new != '') { ?><span class="new"><?php print $new; ?></span><?php } ?>
  8. <div class="submitted"><?php print $submitted; ?></div>
  9. <div class="content">
  10. <?php print $content; ?>
  11. <?php if ($signature): ?>
  12. <div class="clear-block">
  13. <div>—</div>
  14. <?php print $signature ?>
  15. </div>
  16. <?php endif; ?>
  17. </div>
  18. <div class="links">&raquo; <?php print $links; ?></div>
  19. </div>