Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 221 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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