node--chapitre--teaser.tpl.php 707 B

123456789101112131415161718192021
  1. <section id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
  2. <?php if (!$page): ?>
  3. <h2<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2>
  4. <?php endif; ?>
  5. <div class="content">
  6. <?php
  7. // We hide the comments and links now so that we can render them later.
  8. // dsm($content, "content");
  9. hide($content['comments']);
  10. hide($content['links']);
  11. hide($content['field_comprendre']);
  12. ?>
  13. <div class="texts">
  14. <?php
  15. print render($content['field_comprendre']);
  16. print render($content['links']);
  17. ?>
  18. </div>
  19. <?php print render($content); ?>
  20. </div>
  21. </section>