node--chapitre.tpl.php 454 B

12345678910111213
  1. <div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
  2. <?php if (!$page): ?>
  3. <h2<?php print $title_attributes; ?>><?php print $title; ?></h2>
  4. <?php endif; ?>
  5. <?php
  6. // We hide the comments and links now so that we can render them later.
  7. hide($content['comments']);
  8. // hide($content['links']);
  9. print render($content);
  10. // print render($content['links']);
  11. ?>
  12. </div>