Projet

Général

Profil

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

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

1
<?php print $picture ?>
2

    
3
<div class="<?php print $classes . ' ' . $zebra; ?>"<?php print $attributes; ?>>
4

    
5
  <div class="clearfix">
6

    
7
  <?php if ($new) : ?>
8
    <span class="new"><?php print drupal_ucfirst($new) ?></span>
9
  <?php endif; ?>
10
  
11
        <span class="submitted"><?php print $submitted ?></span>
12
    <?php print render($title_prefix); ?>
13
    <h3<?php print $title_attributes; ?>><?php print $title ?></h3>
14
    <?php print render($title_suffix); ?>
15

    
16
    <div class="content"<?php print $content_attributes; ?>>
17
      <?php hide($content['links']); print render($content); ?>
18
      <?php if ($signature): ?>
19
      <div class="clearfix">
20
        <div></div>
21
        <?php print $signature ?>
22
      </div>
23
      <?php endif; ?>
24
    </div>
25
  </div>
26

    
27
  <?php print render($content['links']) ?>
28
</div>