node.tpl.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php if (!empty($pre_object)) print render($pre_object) ?>
  2. <div class='<?php print $classes ?> clearfix' <?php print ($attributes) ?>>
  3. <?php if ($layout && (!empty($submitted) || !empty($links))): ?>
  4. <div class='column-side'><div class='column-wrapper'>
  5. <?php endif; ?>
  6. <?php if (!empty($submitted)): ?>
  7. <div class='<?php print $hook ?>-submitted clearfix'><?php print $submitted ?></div>
  8. <?php endif; ?>
  9. <?php if (!empty($links)): ?>
  10. <div class='<?php print $hook ?>-links clearfix'>
  11. <?php print render($links) ?>
  12. </div>
  13. <?php endif; ?>
  14. <?php if ($layout && (!empty($submitted) || !empty($links))): ?>
  15. </div></div>
  16. <?php endif; ?>
  17. <?php if ($layout): ?>
  18. <div class='column-main'><div class='column-wrapper'>
  19. <?php endif; ?>
  20. <?php if (!empty($title_prefix)) print render($title_prefix); ?>
  21. <?php if (!empty($title) && !$page): ?>
  22. <h2 <?php if (!empty($title_attributes)) print $title_attributes ?>>
  23. <?php if (!empty($new)): ?><span class='new'><?php print $new ?></span><?php endif; ?>
  24. <a href="<?php print $node_url ?>"><?php print $title ?></a>
  25. </h2>
  26. <?php endif; ?>
  27. <?php if (!empty($title_suffix)) print render($title_suffix); ?>
  28. <?php if (!empty($content)): ?>
  29. <div class='<?php print $hook ?>-content clearfix <?php if (!empty($is_prose)) print 'prose' ?>'>
  30. <?php print render($content) ?>
  31. </div>
  32. <?php endif; ?>
  33. <?php if ($layout): ?>
  34. </div></div>
  35. <?php endif; ?>
  36. </div>
  37. <?php if (!empty($post_object)) print render($post_object) ?>