123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- /**
- * @file
- * Module page template. Only change is to warn if the theme is disabled.
- */
- ?>
- <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">
- <?php
- // Get enabled themes.
- $active_themes = list_themes();
- // Check if adminimal is enabled.
- if ($active_themes['adminimal']->status == 0) {
- // Include the disabled message div.
- include 'adminimal-status-check.inc';
- }
- ?>
- <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>
|