cms/drupal/themes/garland/comment.tpl.php
changeset 541 e756a8c72c3d
equal deleted inserted replaced
540:07239de796bb 541:e756a8c72c3d
       
     1 <?php
       
     2 ?>
       
     3 <div class="<?php print $classes . ' ' . $zebra; ?>"<?php print $attributes; ?>>
       
     4 
       
     5   <div class="clearfix">
       
     6 
       
     7     <span class="submitted"><?php print $submitted ?></span>
       
     8 
       
     9   <?php if ($new): ?>
       
    10     <span class="new"><?php print drupal_ucfirst($new) ?></span>
       
    11   <?php endif; ?>
       
    12 
       
    13   <?php print $picture ?>
       
    14 
       
    15     <?php print render($title_prefix); ?>
       
    16     <h3<?php print $title_attributes; ?>><?php print $title ?></h3>
       
    17     <?php print render($title_suffix); ?>
       
    18 
       
    19     <div class="content"<?php print $content_attributes; ?>>
       
    20       <?php hide($content['links']); print render($content); ?>
       
    21       <?php if ($signature): ?>
       
    22       <div class="clearfix">
       
    23         <div>—</div>
       
    24         <?php print $signature ?>
       
    25       </div>
       
    26       <?php endif; ?>
       
    27     </div>
       
    28   </div>
       
    29 
       
    30   <?php print render($content['links']) ?>
       
    31 </div>