node--page.tpl.php 534 B

12345678910111213141516
  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. <div class="content"<?php print $content_attributes; ?>>
  6. <?php
  7. // We hide the comments and links now so that we can render them later.
  8. hide($content['comments']);
  9. hide($content['links']);
  10. print render($content);
  11. ?>
  12. </div>
  13. <?php print render($content['links']); ?>
  14. </div>