blob: 7d2ea56749a2bbda5f2319277d2e3c2fdf4c890f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
<?php
// $Id$
/**
* @file
* Output for main HTML page content.
*/
?>
<div id="container" class="container-16">
<header id="header" class="section section-header clearfix" role="banner">
<?php if ($site_name || $site_slogan || $logo): ?>
<hgroup class="grid-10">
<?php if ($site_name): ?>
<h1 class="site-name"><a title="<?php print t('Home'); ?>" rel="home" href="<?php print $front_page; ?>"><?php print $site_name; ?></a></h1>
<?php endif; ?>
<?php if ($logo): ?>
<a title="<?php print t('Home'); ?>" rel="home" href="<?php print $front_page; ?>"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>"/></a>
<?php endif; ?>
<?php if ($site_slogan): ?>
<h2 class="site-slogan"><?php print $site_slogan; ?></h2>
<?php endif; ?>
</hgroup>
<?php endif; ?>
<?php print render($page['header']); ?>
<?php print render($page['navigation']); ?>
</header>
<?php print render($page['highlighted']); ?>
<div id="main" class="section section-main clearfix" role="main">
<div id="content" class="column <?php print $content_grid_classes; ?>">
<div class="inner">
<?php print $messages; ?>
<?php print render($title_prefix); ?>
<?php if ($title): ?>
<h1 class="title" id="page-title"><?php print $title; ?></h1>
<?php endif; ?>
<?php print render($title_suffix); ?>
<?php print render($page['help']); ?>
<?php if ($tabs = render($tabs)): ?>
<div class="tabs"><?php print $tabs; ?></div>
<?php endif; ?>
<?php if ($action_links): ?>
<ul class="action-links"><?php print render($action_links); ?></ul>
<?php endif; ?>
<div id="main-content" class="clearfix">
<?php print render($page['content']); ?>
</div>
<?php print $feed_icons; ?>
</div>
</div>
<?php if ($sidebar_first = render($page['sidebar_first'])): ?>
<div id="sidebar-first" class="sidebar <?php print $sidebar_first_grid_classes; ?>">
<?php print $sidebar_first; ?>
</div>
<?php endif; ?>
<?php if ($sidebar_second = render($page['sidebar_second'])): ?>
<div id="sidebar-second" class="sidebar <?php print $sidebar_second_grid_classes; ?>">
<?php print $sidebar_second; ?>
</div>
<?php endif; ?>
</div>
<?php print $breadcrumb; ?>
<footer id="footer" class="section section-footer clearfix" role="footer">
<?php print render($page['footer']); ?>
<?php print render($page['copyright']); ?>
</footer>
</div>
<?php if ($collapsible = render($page['collapsible'])): ?>
<section id="section-collapsible" class="section section-collapsible clearfix">
<h2 class="collapsible-toggle"><a href="#"><?php print t('Toggle collapsible region'); ?></a></h2>
<?php print $collapsible; ?>
</section>
<?php endif; ?>
|