1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- /**
- * @file
- * Main page template.
- */
- ?>
- <div id="branding" class="clearfix">
- <?php print $breadcrumb; ?>
- <?php print render($title_prefix); ?>
- <?php if ($title): ?>
- <h1 class="page-title"><?php print $title; ?></h1>
- <?php endif; ?>
- <?php print render($title_suffix); ?>
- </div>
- <div id="navigation">
- <?php if ($primary_local_tasks): ?>
- <?php print render($primary_local_tasks); ?>
- <?php endif; ?>
- <?php if ($secondary_local_tasks): ?>
- <div class="tabs-secondary clearfix"><ul class="tabs secondary"><?php print render($secondary_local_tasks); ?></ul></div>
- <?php endif; ?>
- </div>
- <div id="page">
- <div id="content" class="clearfix">
- <div class="element-invisible"><a id="main-content"></a></div>
- <?php if ($messages): ?>
- <div id="console" class="clearfix"><?php print $messages; ?></div>
- <?php endif; ?>
- <?php if ($page['help']): ?>
- <div id="help">
- <?php print render($page['help']); ?>
- </div>
- <?php endif; ?>
- <?php if (isset($page['content_before'])): ?>
- <div id="content-before">
- <?php print render($page['content_before']); ?>
- </div>
- <?php endif; ?>
- <?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
- <div id="content-wrapper">
- <?php if (isset($page['sidebar_left'])): ?>
- <div id="sidebar-left">
- <?php print render($page['sidebar_left']); ?>
- </div>
- <?php endif; ?>
- <div id="main-content">
- <?php print render($page['content']); ?>
- </div>
- <?php if (isset($page['sidebar_right'])): ?>
- <div id="sidebar-right">
- <?php print render($page['sidebar_right']); ?>
- </div>
- <?php endif; ?>
-
- </div>
- <?php if (isset($page['content_after'])): ?>
- <div id="content-after">
- <?php print render($page['content_after']); ?>
- </div>
- <?php endif; ?>
- </div>
- <div id="footer">
- <?php print $feed_icons; ?>
- </div>
- </div>
|