home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / CMS / drupal-6.0.exe / drupal-6.0 / themes / garland / comment.tpl.php < prev    next >
Encoding:
PHP Script  |  2008-01-04  |  835 b   |  34 lines

  1. <?php
  2. // $Id: comment.tpl.php,v 1.10 2008/01/04 19:24:24 goba Exp $
  3. ?>
  4. <div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ' '. $status; print ' '. $zebra; ?>">
  5.  
  6.   <div class="clear-block">
  7.   <?php if ($submitted): ?>
  8.     <span class="submitted"><?php print $submitted; ?></span>
  9.   <?php endif; ?>
  10.  
  11.   <?php if ($comment->new) : ?>
  12.     <span class="new"><?php print drupal_ucfirst($new) ?></span>
  13.   <?php endif; ?>
  14.  
  15.   <?php print $picture ?>
  16.  
  17.     <h3><?php print $title ?></h3>
  18.  
  19.     <div class="content">
  20.       <?php print $content ?>
  21.       <?php if ($signature): ?>
  22.       <div class="clear-block">
  23.         <div>ΓÇö</div>
  24.         <?php print $signature ?>
  25.       </div>
  26.       <?php endif; ?>
  27.     </div>
  28.   </div>
  29.  
  30.   <?php if ($links): ?>
  31.     <div class="links"><?php print $links ?></div>
  32.   <?php endif; ?>
  33. </div>
  34.