Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 223 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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