Projet

Général

Profil

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

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

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

    
3
  <div class="clearfix">
4

    
5
    <span class="submitted"><?php print $submitted ?></span>
6

    
7
  <?php if ($new) : ?>
8
    <span class="new"><?php print drupal_ucfirst($new) ?></span>
9
  <?php endif; ?>
10

    
11
  <?php print $picture ?>
12

    
13
    <?php print render($title_prefix); ?>
14
    <h3<?php print $title_attributes; ?>><?php print $title ?></h3>
15
    <?php print render($title_suffix); ?>
16

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

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