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

1234567891011121314151617181920212223
  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. hide($content['field_accroche']);
  13. ?>
  14. <div class="texts">
  15. <?php
  16. // print render($content['field_comprendre']);
  17. print render($content['field_accroche']);
  18. print render($content['links']);
  19. ?>
  20. </div>
  21. <?php print render($content); ?>
  22. </div>
  23. </section>