You are here

comment.tpl.php in Drupal 6

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>