123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <?php
- ?>
- <header id="header">
- <hgroup class="logo">
- <?php
- if ($site_title) {
- print $site_title;
- }
- ?>
- </hgroup>
- <?php if ($page['headerblock_left'] || $page['headerblock_middle'] || $page['headerblock_right']): ?>
- <div id="header-blocks">
- <?php print render($page['headerblock_left']); ?>
- <?php print render($page['headerblock_middle']); ?>
- <?php print render($page['headerblock_right']); ?>
- </div>
- <?php endif; ?>
-
- <?php if ($breadcrumb): ?>
- <section id="breadcrumb"><?php print $breadcrumb; ?></section>
- <?php endif; ?>
-
-
- </header>
- <!-- /header -->
- <div id="main">
-
- <?php if ($method == 0 || $method == 2): ?>
- <?php print render($page['sidebar_first']); ?>
- <?php endif; ?>
- <?php if ($method == 2): ?>
- <?php print render($page['sidebar_second']) ?>
- <?php endif; ?>
- <?php if(isset($page['sidebar_first']) || isset($page['sidebar_second'])): ?>
- <section id="center">
- <?php endif; ?>
- <?php if ($primary_local_tasks || $secondary_local_tasks || $action_links): ?>
- <div id="tasks">
- <?php if ($primary_local_tasks): ?>
- <ul class="tabs primary"><?php print render($primary_local_tasks); ?></ul>
- <?php endif; ?>
- <?php if ($secondary_local_tasks): ?>
- <ul class="tabs secondary"><?php print render($secondary_local_tasks); ?></ul>
- <?php endif; ?>
- <?php if ($action_links = render($action_links)): ?>
- <ul class="action-links"><?php print $action_links; ?></ul>
- <?php endif; ?>
- </div>
- <?php endif; ?>
- <?php if ($show_messages && $messages): print $messages; endif; ?>
- <?php print render($page['help']); ?>
- <?php print render($page['content_top']); ?>
- <section id="content">
- <?php if($title): ?><h1 class="page-title"><?php print $title ?></h1><?php endif; ?>
- <?php print render($page['content']); ?>
- </section>
- <?php print render($page['content_bottom']); ?>
-
- <?php if(isset($page['sidebar_first']) || isset($page['sidebar_second'])): ?>
- </section>
- <?php endif; ?>
- <!-- /center -->
-
-
- <?php if ($method == 1): ?>
- <?php print render($page['sidebar_first']); ?>
- <?php endif; ?>
-
- <?php if ($method == 0 || $method == 1): ?>
- <?php print render($page['sidebar_second']) ?>
- <?php endif; ?>
-
- </div><!-- /main -->
-
-
- <footer id="footer">
-
- <?php print render($page['footer_top']); ?>
- <?php if ($page['footer_left'] || $page['footer_middle_left'] || $page['footer_middle_right'] || $page['footer_right']): ?>
- <div class="footer-block">
-
- <?php print render($page['footer_left']); ?>
- <?php print render($page['footer_middle-left']); ?>
- <?php print render($page['footer_midle-right']); ?>
- <?php print render($page['footer_right']); ?>
- </div>
- <?php endif; ?>
- <?php print render($page['footer_bottom']); ?>
- </footer>
- <!-- /footer -->
|