node.tpl.php 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php if (!empty($pre_object)) print render($pre_object) ?>
  2. <div<?php print ($attributes) ?>>
  3. <?php if (!empty($title_prefix)) print render($title_prefix); ?>
  4. <?php if (!$page && !empty($title)): ?>
  5. <h2 <?php if (!empty($title_attributes)) print $title_attributes ?>>
  6. <?php if (!empty($new)): ?><span class="new"><?php print $new ?></span><?php endif; ?>
  7. <a href="<?php print $node_url ?>"><?php print $title ?></a>
  8. </h2>
  9. <?php endif; ?>
  10. <?php if (!empty($title_suffix)) print render($title_suffix); ?>
  11. <?php if (!empty($submitted)): ?>
  12. <div class="<?php print $hook ?>-submitted clearfix"><?php print $submitted ?></div>
  13. <?php endif; ?>
  14. <?php if (!empty($content)): ?>
  15. <div<?php print $content_attributes ?>>
  16. <?php print render($content) ?>
  17. </div>
  18. <?php endif; ?>
  19. <?php if (!empty($links)): ?>
  20. <div class="<?php print $hook ?>-links clearfix">
  21. <?php print render($links) ?>
  22. </div>
  23. <?php endif; ?>
  24. </div>
  25. <?php if (!empty($post_object)) print render($post_object) ?>