This repository has been archived by the owner on Feb 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.tpl.php
111 lines (93 loc) · 3.87 KB
/
page.tpl.php
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
$seclinks = theme('links', $secondary_links, array('class' => 'menu'));
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
<head>
<title><?php print $head_title; ?></title>
<?php print $head; ?>
<?php print $styles; ?>
<?php print $scripts; ?>
</head>
<body>
<?php if (trim($seclinks) != ''): ?><div style="height: 6px; background-color: #8b9096;"></div><?php endif; ?>
<div style="margin: 0 auto; width: 964px">
<?php if (trim($seclinks) != ''): ?>
<div id="heimathafen">
<?php print $seclinks; ?>
</div>
<?php endif; ?>
<?php if (theme_get_setting('piratenhagenlsa_alternativestyle') != 1): ?>
<div id="oben"><a href="/"><img src="<?php print $logo; ?>" alt="<?php if ($site_name) print $site_name; ?>" title="<?php if ($site_name) print $site_name; ?>" /></a></div>
<?php endif; ?>
<div style="clear: both"></div>
<?php if (theme_get_setting('piratenhagenlsa_alternativestyle') != 1): ?>
<div id="toplinks">
<div class="toplinkstext">
<?php print piratenhagenlsa_menubarlinks($primary_links, array('class' => 'links-menu')); ?>
</div>
</div>
<?php else: ?>
<div id="toplinks-alt"></div>
<?php endif; ?>
<div id="container">
<?php if (theme_get_setting('piratenhagenlsa_alternativestyle') == 1): ?>
<div id="con-oben">
<a href="/"><img src="<?php print $logo; ?>" alt="<?php if ($site_name) print $site_name; ?>" title="<?php if ($site_name) print $site_name; ?>" /></a>
</div>
<?php endif; ?>
<div id="linksaussen"> </div>
<?php if ($left): ?>
<div id="links">
<div id="sidebarl">
<?php print $left ?>
</div>
</div>
<?php endif; ?>
<div id="mitte" style="width: <?php print 508 + (!$left ? 198 : 0) + (!$right ? 198 : 0) ?>px">
<div id="brot">
<?php print $breadcrumb ?>
</div>
<?php if ($mission): print '<div id="mission">'. $mission .'</div>'; endif; ?>
<?php if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'; endif; ?>
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs pagetitle"' : ' class="pagetitle"') .'>'. $title .'</h2>'; endif; ?>
<?php if ($tabs): print '<ul class="tabs primary">'. $tabs .'</ul></div>'; endif; ?>
<?php if ($tabs2): print '<ul class="tabs secondary">'. $tabs2 .'</ul>'; endif; ?>
<?php if ($show_messages && $messages): print $messages; endif; ?>
<?php print $help ?>
<?php print $content; ?>
</div>
<?php if ($right): ?>
<div id="rechts">
<div id="sidebarr">
<?php print $right ?>
</div>
</div>
<?php endif; ?>
<div id="rechtsaussen"> </div>
<div class="clr"></div>
</div>
<div id="unten"></div>
</div>
<div id="fusslinie">
<?php
if ($footer) {
print $footer;
print "<br /><br />";
}
?>
<?php
if ($footer_message) {
print $footer_message;
print "<br /><br />";
}
?>
<span id="serverinfo">
<a href="https://github.com/PiratenLSA/piratenhagenlsa">Design</a> von den <a href="http://piraten-hagen.de">Piraten Hagen</a>.
<br />Angepasst von der <a href="http://www.piraten-lsa.de">Piratenpartei Sachsen-Anhalt</a>.
</span>
</div>
<!-- TagMonitoring -->
<?php print $closure ?>
</body>
</html>