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