Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 93 | Rev 223 | 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; ?>
221 vio 14
 
93 aurelien 15
 
16
  <?php print $picture ?>
17
 
18
    <h3><?php print $title ?></h3>
19
 
20
    <div class="content">
21
      <?php print $content ?>
22
      <?php if ($signature): ?>
23
      <div class="clear-block">
24
        <div>—</div>
25
        <?php print $signature ?>
26
      </div>
27
      <?php endif; ?>
28
    </div>
29
  </div>
30
 
31
  <?php if ($links): ?>
32
    <div class="links"><?php print $links ?></div>
33
  <?php endif; ?>
34
</div>