comparison themes/garland/comment.tpl.php @ 1:c1f4ac30525a 6.0

Drupal 6.0
author Franck Deroche <webmaster@defr.org>
date Tue, 23 Dec 2008 14:28:28 +0100
parents
children
comparison
equal deleted inserted replaced
0:5a113a1c4740 1:c1f4ac30525a
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>