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

File

themes/pushbutton/comment.tpl.php
View source
<div class="comment<?php

print ' ' . $status;
?>">
  <?php

if ($picture) {
  ?>
    <?php

  print $picture;
  ?>
  <?php

}
?>
  <h3 class="title"><?php

print $title;
?></h3>
  <div class="submitted"><?php

print $submitted;
if ($comment->new) {
  ?><span class="new"> *<?php

  print $new;
  ?></span><?php

}
?></div>
  <div class="content">
    <?php

print $content;
?>
    <?php

if ($signature) {
  ?>
      <div class="clear-block">
        <div>—</div>
        <?php

  print $signature;
  ?>
      </div>
    <?php

}
?>
  </div>
  <!-- BEGIN: links -->
  <div class="links">&raquo; <?php

print $links;
?></div>
  <!-- END: links -->
</div>