page.tpl.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <div id="branding" class="clearfix">
  2. <?php print $breadcrumb; ?>
  3. <?php print render($title_prefix); ?>
  4. <?php if ($title): ?>
  5. <h1 class="page-title"><?php print $title; ?></h1>
  6. <?php endif; ?>
  7. <?php print render($title_suffix); ?>
  8. <?php print render($primary_local_tasks); ?>
  9. </div>
  10. <div id="page">
  11. <?php if ($secondary_local_tasks): ?>
  12. <div class="tabs-secondary clearfix"><?php print render($secondary_local_tasks); ?></div>
  13. <?php endif; ?>
  14. <div id="content" class="clearfix">
  15. <div class="element-invisible"><a id="main-content"></a></div>
  16. <?php if ($messages): ?>
  17. <div id="console" class="clearfix"><?php print $messages; ?></div>
  18. <?php endif; ?>
  19. <?php if ($page['help']): ?>
  20. <div id="help">
  21. <?php print render($page['help']); ?>
  22. </div>
  23. <?php endif; ?>
  24. <?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
  25. <?php print render($page['content']); ?>
  26. </div>
  27. <div id="footer">
  28. <?php print $feed_icons; ?>
  29. </div>
  30. </div>