Projet

Général

Profil

Paste
Télécharger (1015 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / corolla / templates / comment.tpl.php @ 87dbc3bf

1
<article class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
2

    
3
  <?php print $unpublished; ?>
4

    
5
  <?php print $picture; ?>
6

    
7
  <?php print render($title_prefix); ?>
8
  <?php if ($title || $new || $submitted): ?>
9
  <header<?php print $header_attributes; ?>>
10
 
11
    <?php if ($title): ?>
12
      <h3<?php print $title_attributes; ?>><?php print $title ?></h3>
13
    <?php endif; ?>
14

    
15
    <?php if ($new): ?>
16
      <em class="new"><?php print $new ?></em>
17
    <?php endif; ?>
18
    
19
    <p class="comment-submitted"><?php print $submitted; ?><p>
20
  </header>
21
  <?php endif; ?>
22
  <?php print render($title_suffix); ?>
23

    
24
  <div<?php print $content_attributes; ?>>
25
    <?php
26
      hide($content['links']);
27
      print render($content);
28
    ?>
29
  </div>
30

    
31
  <?php if ($signature): ?>
32
    <div class="user-signature"><?php print $signature ?></div>
33
  <?php endif; ?>
34

    
35
  <?php if ($links = render($content['links'])): ?>
36
    <nav<?php print $links_attributes; ?>><?php print $links; ?></nav>
37
  <?php endif; ?>
38

    
39
</article>