page.tpl.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <div id='branding'><div class='limiter clearfix'>
  2. <div class='breadcrumb clearfix'><?php print $breadcrumb ?></div>
  3. <?php if (!$overlay && isset($secondary_menu)) : ?>
  4. <?php print theme('links', array('links' => $secondary_menu, 'attributes' => array('class' => 'links secondary-menu'))) ?>
  5. <?php endif; ?>
  6. </div></div>
  7. <div id='page-title'><div class='limiter clearfix'>
  8. <div class='tabs clearfix'>
  9. <?php if ($primary_local_tasks): ?>
  10. <ul class='primary-tabs links clearfix'><?php print render($primary_local_tasks) ?></ul>
  11. <?php endif; ?>
  12. </div>
  13. <?php print render($title_prefix); ?>
  14. <h1 class='page-title <?php print $page_icon_class ?>'>
  15. <?php if (!empty($page_icon_class)): ?><span class='icon'></span><?php endif; ?>
  16. <?php if ($title) print $title ?>
  17. </h1>
  18. <?php if ($action_links): ?>
  19. <ul class='action-links links clearfix'><?php print render($action_links) ?></ul>
  20. <?php endif; ?>
  21. <?php print render($title_suffix); ?>
  22. </div></div>
  23. <?php if ($show_messages && $messages): ?>
  24. <div id='console'><div class='limiter clearfix'><?php print $messages; ?></div></div>
  25. <?php endif; ?>
  26. <div id='page'><div id='main-content' class='limiter clearfix'>
  27. <?php if ($page['help']) print render($page['help']) ?>
  28. <div id='content' class='page-content clearfix'>
  29. <?php if (!empty($page['content'])) print render($page['content']) ?>
  30. </div>
  31. </div></div>
  32. <div id='footer' class='clearfix'>
  33. <?php if ($feed_icons): ?>
  34. <div class='feed-icons clearfix'>
  35. <label><?php print t('Feeds') ?></label>
  36. <?php print $feed_icons ?>
  37. </div>
  38. <?php endif; ?>
  39. </div>