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

File

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

if ($comment->status == COMMENT_NOT_PUBLISHED) {
  print ' comment-unpublished';
}
?>">
    <?php

if ($picture) {
  print $picture;
}
?>
<h3 class="title"><?php

print $title;
?></h3><?php

if ($new != '') {
  ?><span class="new"><?php

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

}
?>
    <div class="submitted"><?php

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

print $content;
?></div>
    <div class="links">&raquo; <?php

print $links;
?></div>
  </div>