This repository has been archived by the owner on Dec 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
page--leaders.tpl.php
124 lines (120 loc) · 3.87 KB
/
page--leaders.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
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php
/*
*
* Project: PiratePartyUK Drupal Theme (NWP 2014)
*
*
* Authors: Andy Halsall <[email protected]>
* Peter Descard
* Pirate Party UK
* Date: 2014-02-24
* Version: 0.9
*
* Description: Leaders office page template for the Pirate Party Drupal Theme
*
*
*
* Acknowledgements:
*
* Based on and developed from Piratenkleider - Wolfgang Wiese (xwolf)
* the current Piratenpartei wordpress theme (http://www.piratenkleider.de/)
*
*/
?>
<ul role="navigation" class="nav skiplinks">
<li><a class="ym-skip" href="#nav"><?php print t('Jump to Navigation.'); ?></a></li>
<li><a class="ym-skip" href="#main-content"><?php print t('Jump to Content.'); ?></a></li>
<li><a class="ym-skip" href="#searchform"><?php print t('Jump to Search'); ?></a></li>
</ul>
<div class="section leadership">
<div class="row">
<div class="branding">
<a href="<?php print $front_page; ?>" title="<?php print $site_name; ?>" rel="home" class="logo">
<h1><img src="<?php print $logo; ?>" alt="<?php print $site_name; ?>" /></h1>
</a>
</div>
<div class="nav-top" role="navigation">
<h2 class="skip"><?php print t('Service-Navigation'); ?></h2>
<?php print render($page['social']); ?>
</div>
<div class="nav-main" role="navigation" id="nav">
<h2 class="skip"><?php print t('Navigation'); ?></h2>
<?php if ($main_menu): ?>
<div class="menu-header">
<?php print render($main_menu_expanded); ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
<div class="section breadcrumbs">
<div class="row">
<div class="skin">
<?php print $breadcrumb; ?>
</div>
</div>
</div>
<div class="section content " id="main-content">
<div class="row">
<div id="content-primary" class="content-primary">
<div id="above_content" >
<?php print render($page['above_content']); ?>
</div>
<div style="padding: 20px 0px 0px 20px; margin-left: 10px;"><!-- change back for article image implemenation: class="content-header" -->
<?php /* No Action links required on the user page */ ?>
<?php print render($title_prefix); ?>
<h1 id="page-title">
<span><?php print $title ?></span>
</h1>
<?php print render($title_suffix); ?>
</div>
<div class="skin">
<?php if ($tabs): ?>
<div class="tabs"><?php print render($tabs); ?>
</div>
<?php endif; ?>
<?php print $messages; ?>
<?php print render($page['help']); ?>
<?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
<?php print render($page['content']); ?>
</div>
<div id="below-content" >
<?php print render($page['below_content']); ?>
</div>
</div>
<div id="content-aside" class="content-aside">
<?php if ($is_front && theme_get_setting('pirateparty_teaserlinks') == 1): ?>
<div class="teaserskin">
<div class="teaserlinks">
<ul>
<?php
for ($i = 1; $i <= 4; $i++) {
print '<li><a href="'.theme_get_setting('pirateparty_teaser' . $i . '_url').'" class="symbol symbol-'.theme_get_setting('pirateparty_teaser' . $i . '_symbol').'">'.theme_get_setting('pirateparty_teaser' . $i . '_title').' <span>'.theme_get_setting('pirateparty_teaser' . $i . '_subtitle').'</span></a></li>';
}
?>
</ul>
</div>
</div>
<?php endif; ?>
<?php print render($page['teaserlinks']); ?>
<?php if ($page['sidebar_first']): ?>
<div class="skin">
<h1 class="skip"><?php print t('More Information'); ?>
</h1>
<?php print render($page['sidebar_first']); ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
<div class="section pre-footer">
<div class="row">
<?php print render($page['pre-footer']); ?>
</div>
</div>
<div class="section footer">
<div class="row">
<?php print render($page['footer']); ?>
<?php print render($page['siteinfo']); ?>
</div>
</div>