Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 221 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
93 aurelien 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>