You are here

comment.tpl.php in Drupal 5

File

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

if ($comment->status == COMMENT_NOT_PUBLISHED) {
  print ' comment-unpublished';
}
?>">
  <?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;
?></div>
  <!-- BEGIN: links -->
  <div class="links">&raquo; <?php

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