Projet

Général

Profil

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

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

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

    
3
  <?php print $unpublished; ?>
4

    
5
  <?php print render($title_prefix); ?>
6
  <?php if ($title || $new): ?>
7
  <header<?php print $header_attributes; ?>>
8
    <h3<?php print $title_attributes; ?>><?php print $title ?></h3>
9
    <?php if ($new): ?>
10
      <em class="new"><?php print $new ?></em>
11
    <?php endif; ?>
12
  </header>
13
  <?php endif; ?>
14
  <?php print render($title_suffix); ?>
15

    
16
  <footer<?php print $footer_attributes; ?>>
17
    <p class="author-datetime"><?php print $submitted; ?></p>
18
  </footer>
19

    
20
  <div<?php print $content_attributes; ?>>
21
    <?php print $picture; ?>
22
    <?php
23
      hide($content['links']);
24
      print render($content);
25
    ?>
26
  </div>
27

    
28
  <?php if ($signature): ?>
29
    <div class="user-signature"><?php print $signature ?></div>
30
  <?php endif; ?>
31

    
32
  <?php if ($links = render($content['links'])): ?>
33
    <nav<?php print $links_attributes; ?>><?php print $links; ?></nav>
34
  <?php endif; ?>
35

    
36
</article>