Projet

Général

Profil

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

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

1
<section id="comments" class="<?php print $classes; ?>"<?php print $attributes; ?>>
2

    
3
  <?php if ($content['comments'] && $node->type != 'forum'): ?>
4
    <?php print render($title_prefix); ?>
5
    <h2 class="title">
6
      <?php print format_plural($node->comment_count, '1 Comment', '@count Comments'); ?>
7
    </h2>
8
    <?php print render($title_suffix); ?>
9
  <?php endif; ?>
10

    
11
  <?php print render($content['comments']); ?>
12

    
13
  <?php if ($content['comment_form']): ?>
14
    <h2 class="title comment-form"><?php print t('Add new comment'); ?></h2>
15
    <?php print render($content['comment_form']); ?>
16
  <?php endif; ?>
17

    
18
</section>