1
|
<?php
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
|
7
|
|
8
|
|
9
|
?><!DOCTYPE html>
|
10
|
<?php print $html_attributes; ?>><![endif]-->
|
11
|
<?php print $html_attributes; ?>><![endif]-->
|
12
|
<?php print $html_attributes; ?>><![endif]-->
|
13
|
<?php print $html_attributes; ?>><![endif]-->
|
14
|
<html <?php print $html_attributes; ?>>
|
15
|
|
16
|
<head>
|
17
|
<?php print $head; ?>
|
18
|
<title><?php print $head_title; ?></title>
|
19
|
|
20
|
<?php if ($default_mobile_metatags): ?>
|
21
|
<meta name="MobileOptimized" content="width">
|
22
|
<meta name="HandheldFriendly" content="true">
|
23
|
<meta name="viewport" content="width=device-width">
|
24
|
<?php endif; ?>
|
25
|
|
26
|
|
27
|
<?php print $styles; ?>
|
28
|
<?php print $scripts; ?>
|
29
|
<?php if ($add_respond_js): ?>
|
30
|
|
31
|
<?php print $base_path . $path_to_zen; ?>/js/html5-respond.js"></script>
|
32
|
<![endif]-->
|
33
|
<?php elseif ($add_html5_shim): ?>
|
34
|
|
35
|
<?php print $base_path . $path_to_zen; ?>/js/html5.js"></script>
|
36
|
<![endif]-->
|
37
|
<?php endif; ?>
|
38
|
</head>
|
39
|
<body class="<?php print $classes; ?>" <?php print $attributes;?>>
|
40
|
|
41
|
<div id="page">
|
42
|
|
43
|
<header id="header" role="banner">
|
44
|
|
45
|
<?php if ($logo): ?>
|
46
|
<a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>" rel="home" id="logo"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /></a>
|
47
|
<?php endif; ?>
|
48
|
|
49
|
<?php if ($site_name || $site_slogan): ?>
|
50
|
<div id="name-and-slogan">
|
51
|
<?php if ($site_name): ?>
|
52
|
<h1 id="site-name">
|
53
|
<a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>" rel="home"><span><?php print $site_name; ?></span></a>
|
54
|
</h1>
|
55
|
<?php endif; ?>
|
56
|
|
57
|
<?php if ($site_slogan): ?>
|
58
|
<h2 id="site-slogan"><?php print $site_slogan; ?></h2>
|
59
|
<?php endif; ?>
|
60
|
</div>
|
61
|
<?php endif; ?>
|
62
|
|
63
|
<?php print $header; ?>
|
64
|
|
65
|
</header>
|
66
|
|
67
|
<div id="main">
|
68
|
|
69
|
<div id="content" class="column" role="main">
|
70
|
<?php print $highlighted; ?>
|
71
|
<a id="main-content"></a>
|
72
|
<?php if ($title): ?>
|
73
|
<h1 class="title" id="page-title"><?php print $title; ?></h1>
|
74
|
<?php endif; ?>
|
75
|
<?php print $messages; ?>
|
76
|
<?php print $content; ?>
|
77
|
</div>
|
78
|
|
79
|
<div id="navigation">
|
80
|
<?php print $navigation; ?>
|
81
|
</div>
|
82
|
|
83
|
<?php if ($sidebar_first || $sidebar_second): ?>
|
84
|
<aside class="sidebars">
|
85
|
<?php print $sidebar_first; ?>
|
86
|
<?php print $sidebar_second; ?>
|
87
|
</aside>
|
88
|
<?php endif; ?>
|
89
|
|
90
|
</div>
|
91
|
|
92
|
<?php print $footer; ?>
|
93
|
|
94
|
</div>
|
95
|
|
96
|
<?php print $bottom; ?>
|
97
|
|
98
|
</body>
|
99
|
</html>
|