1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
2
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
4
|
|
5
|
<head>
|
6
|
<title><?php print $head_title; ?></title>
|
7
|
<?php print $head; ?>
|
8
|
<?php print $styles; ?>
|
9
|
<?php print $scripts; ?>
|
10
|
|
11
|
<?php print base_path() . path_to_theme(); ?>/ie_styles.css" />
|
12
|
<![endif]-->
|
13
|
</head>
|
14
|
<body class="<?php print $classes; ?>">
|
15
|
<div id="header">
|
16
|
|
17
|
<div id="headerWrapper">
|
18
|
|
19
|
<div id="siteName">
|
20
|
<?php if ($logo): print '<a href="' . $front_page . '" title="' . t('Home') . '"> <img src="' . check_url($logo) . '" alt="' . t('Home') . '" id="logo" /></a>'; endif; ?>
|
21
|
<div id="siteInfo">
|
22
|
<?php if (!empty($site_name)): ?>
|
23
|
<h1 id="siteTitle">
|
24
|
<a href="<?php print $front_page ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a>
|
25
|
</h1>
|
26
|
<?php endif; ?>
|
27
|
|
28
|
<?php if (!empty($site_slogan)): ?>
|
29
|
<div id="siteSlogan"><?php print $site_slogan; ?></div>
|
30
|
<?php endif; ?>
|
31
|
</div>
|
32
|
</div>
|
33
|
|
34
|
|
35
|
</div>
|
36
|
</div>
|
37
|
|
38
|
<div id="container">
|
39
|
<div id="inner">
|
40
|
<div id="contentWrapper">
|
41
|
<?php if (!empty($primary_nav)): ?>
|
42
|
<div id="menuLeft"></div>
|
43
|
<div id="primaryMenu">
|
44
|
<?php print $primary_nav; ?>
|
45
|
</div>
|
46
|
<div id="menuRight"></div>
|
47
|
<?php endif; ?>
|
48
|
|
49
|
|
50
|
|
51
|
<?php if($sidebar_first): ?>
|
52
|
<div id="sidebar_first" class="sidebar">
|
53
|
<?php print $sidebar_first; ?>
|
54
|
</div>
|
55
|
<?php endif; ?>
|
56
|
|
57
|
<div id="center">
|
58
|
|
59
|
<?php print $messages; ?>
|
60
|
|
61
|
|
62
|
<div id="content">
|
63
|
<?php if ($title): ?>
|
64
|
<h1 class="title" id="page-title"><?php print $title; ?></h1>
|
65
|
<?php endif; ?>
|
66
|
<?php if ($tabs): ?>
|
67
|
<div class="tabs"><?php print $tabs; ?></div>
|
68
|
<?php endif; ?>
|
69
|
<?php print $help; ?>
|
70
|
<?php print $content; ?>
|
71
|
<div class="feedicons">
|
72
|
<?php echo $feed_icons ?>
|
73
|
</div>
|
74
|
</div>
|
75
|
|
76
|
</div>
|
77
|
|
78
|
<?php if($sidebar_second): ?>
|
79
|
<div id="sidebar_last" class="sidebar">
|
80
|
<?php print $sidebar_second; ?>
|
81
|
</div>
|
82
|
<?php endif; ?>
|
83
|
|
84
|
</div>
|
85
|
|
86
|
</div>
|
87
|
|
88
|
</div>
|
89
|
|
90
|
<div id="footer">
|
91
|
<div class="footer-text">
|
92
|
<?php if($footer_message): ?>
|
93
|
<?php print $footer_message; ?>
|
94
|
<?php endif; ?>
|
95
|
</div>
|
96
|
|
97
|
</div>
|
98
|
|
99
|
</body>
|
100
|
</html>
|