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