object.tpl.php 972 B

12345678910111213141516171819202122232425262728
  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 (!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. <?php print $title ?>
  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; ?>><?php print render($content) ?></div>
  16. <?php endif; ?>
  17. <?php if (!empty($links)): ?>
  18. <div class="<?php print $hook ?>-links clearfix"><?php print render($links) ?></div>
  19. <?php endif; ?>
  20. </div>
  21. <?php if (!empty($post_object)) print render($post_object) ?>