forked from giterlizzi/dokuwiki-template-bootstrap3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.php
executable file
·250 lines (205 loc) · 8.42 KB
/
main.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<?php
/**
* DokuWiki Bootstrap3 Template
*
* @link http://dokuwiki.org/template:bootstrap3
* @author Giuseppe Di Terlizzi <[email protected]>
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
*/
if (!defined('DOKU_INC')) die(); /* must be run from within DokuWiki */
@require_once(dirname(__FILE__).'/tpl_functions.php'); /* include hook for template functions */
header('X-UA-Compatible: IE=edge,chrome=1');
include_once(dirname(__FILE__).'/tpl_global.php'); // Include template global variables
if (isset($_GET['do']) && $_GET['do'] == 'check') msg('bootstrap3 template version: v' . $template_info['date'], 1, '', '', MSG_ADMINS_ONLY);
$navbar_padding = 20;
if ($fixedTopNavbar) {
if ($bootstrapTheme == 'bootswatch') {
// Set the navbar height for all Bootswatch Themes (values from bootswatch/*/_variables.scss)
switch ($bootswatchTheme) {
case 'simplex':
case 'superhero':
$navbar_height = 40;
break;
case 'yeti':
$navbar_height = 45;
break;
case 'cerulean':
case 'cosmo':
case 'custom':
case 'cyborg':
case 'lumen':
case 'slate':
case 'spacelab':
case 'united':
$navbar_height = 50;
break;
case 'darkly':
case 'flatly':
case 'journal':
case 'sandstone':
$navbar_height = 60;
break;
case 'paper':
$navbar_height = 64;
break;
case 'readable':
$navbar_height = 65;
break;
default:
$navbar_height = 50;
}
} else {
$navbar_height = 50;
}
$navbar_padding += $navbar_height;
}
?><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang'] ?>"
lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title><?php echo $browserTitle ?></title>
<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)</script>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<?php echo tpl_favicon(array('favicon', 'mobile')) ?>
<?php tpl_includeFile('meta.html') ?>
<?php foreach ($bootstrapStyles as $bootstrapStyle): ?>
<link type="text/css" rel="stylesheet" href="<?php echo $bootstrapStyle; ?>" />
<?php endforeach; ?>
<link type="text/css" rel="stylesheet" href="<?php echo DOKU_TPL ?>assets/font-awesome/css/font-awesome.min.css" />
<script type="text/javascript">/*<![CDATA[*/
var TPL_CONFIG = <?php echo json_encode($tplConfigJSON); ?>;
/*!]]>*/</script>
<?php tpl_metaheaders() ?>
<script type="text/javascript" src="<?php echo DOKU_TPL ?>assets/bootstrap/js/bootstrap.min.js"></script>
<style type="text/css">
body { padding-top: <?php echo $navbar_padding ?>px; }
.toc-affix { z-index: 9999; top: <?php echo ($navbar_padding -10) ?>px; right: 10px; }
</style>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script type="text/javascript" src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script type="text/javascript" src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<?php if ($fixedTopNavbar): ?>
<script type="text/javascript">/*<![CDATA[*/
jQuery(document).ready(function() {
if (location.hash) {
setTimeout(function() {
scrollBy(0, -<?php echo $navbar_padding ?>);
}, 1);
}
});
/*!]]>*/</script>
<?php endif; ?>
</head>
<?php tpl_flush() ?>
<body class="<?php echo (($bootstrapTheme == 'bootswatch') ? $bootswatchTheme : $bootstrapTheme) . ($pageOnPanel ? ' page-on-panel' : ''); ?>">
<!--[if IE 8 ]><div id="IE8"><![endif]-->
<div id="dokuwiki__site" class="container<?php echo ($fluidContainer) ? '-fluid' : '' ?>">
<div id="dokuwiki__top" class="site <?php echo tpl_classes(); ?> <?php echo ($showSidebar) ? 'hasSidebar' : ''; ?>">
<?php tpl_includeFile('topheader.html') ?>
<!-- header -->
<div id="dokuwiki__header">
<?php @require_once('tpl_navbar.php'); ?>
</div>
<!-- /header -->
<?php tpl_includeFile('header.html') ?>
<?php tpl_includeFile('social.html') ?>
<?php if ($conf['youarehere'] || $conf['breadcrumbs']): ?>
<div id="dw__breadcrumbs">
<hr/>
<?php if($conf['youarehere']): ?>
<div class="dw__youarehere">
<?php tpl_youarehere(' ') ?>
</div>
<?php endif; ?>
<?php if($conf['breadcrumbs']): ?>
<div class="dw__breadcrumbs hidden-print">
<?php tpl_breadcrumbs(' ') ?>
</div>
<?php endif; ?>
<hr/>
</div>
<?php endif ?>
<p class="pageId text-right">
<span class="label label-primary"><?php echo hsc($ID) ?></span>
</p>
<div id="dw__msgarea">
<?php bootstrap3_html_msgarea() ?>
</div>
<main class="main row" role="main">
<?php if ($showSidebar && $sidebarPosition == 'left') bootstrap3_include_sidebar($conf['sidebar'], 'dokuwiki__aside', $leftSidebarGrid, 'sidebarheader.html', 'sidebarfooter.html'); ?>
<!-- ********** CONTENT ********** -->
<article id="dokuwiki__content" class="<?php echo $contentGrid ?>" <?php echo (($semantic) ? 'itemscope itemtype="http://schema.org/'.$schemaOrgType.'"' : '') ?>>
<div class="<?php echo ($pageOnPanel ? 'panel panel-default' : 'no-panel') ?>" <?php echo (($semantic) ? 'itemprop="articleBody"' : '') ?>>
<div class="page <?php echo ($pageOnPanel ? 'panel-body' : '') ?>">
<?php
tpl_flush(); /* flush the output buffer */
tpl_includeFile('pageheader.html');
// render the content into buffer for later use
ob_start();
tpl_content(false);
$content = ob_get_clean();
?>
<div class="pull-right hidden-print">
<div class="toc-affix" data-spy="affix" data-offset-top="150">
<?php bootstrap3_toc(tpl_toc(true)) ?>
</div>
</div>
<!-- wikipage start -->
<?php echo $content; ?>
<!-- wikipage stop -->
<?php
tpl_flush();
tpl_includeFile('pagefooter.html');
?>
</div>
</div>
</article>
<?php
if ($showSidebar && $sidebarPosition == 'right') {
bootstrap3_include_sidebar($conf['sidebar'], 'dokuwiki__aside', $leftSidebarGrid,
'sidebarheader.html', 'sidebarfooter.html');
}
if ($showSidebar && $showRightSidebar && $sidebarPosition == 'left') {
bootstrap3_include_sidebar($rightSidebar, 'dokuwiki__rightaside', $rightSidebarGrid,
'rightsidebarheader.html', 'rightsidebarfooter.html');
}
?>
<?php @require_once('tpl_page_tools.php') ?>
</main>
<footer id="dokuwiki__footer" class="small">
<a href="javascript:void(0)" class="back-to-top hidden-print btn btn-default btn-sm" title="<?php echo $lang['skip_to_content'] ?>" id="back-to-top" accesskey="t"><i class="fa fa-chevron-up"></i></a>
<div class="text-right">
<?php if ($showPageInfo): ?>
<span class="docInfo">
<?php tpl_pageinfo() /* 'Last modified' etc */ ?>
</span>
<?php endif ?>
<?php if ($showLoginOnFooter && ! $_SERVER['REMOTE_USER']): ?>
<span class="loginLink hidden-print">
<?php echo tpl_action('login', 1, 0, 1, '<i class="fa fa-sign-in"></i> '); ?>
</span>
<?php endif; ?>
</div>
<?php @require_once('tpl_badges.php'); ?>
</footer>
<?php
tpl_includeFile('footer.html');
@require_once('tpl_cookielaw.php');
?>
</div><!-- /site -->
<?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?>
<div id="screen__mode"><?php /* helper to detect CSS media query in script.js */ ?>
<span class="visible-xs"></span>
<span class="visible-sm"></span>
<span class="visible-md"></span>
<span class="visible-lg"></span>
</div>
</div>
<!--[if lte IE 8 ]></div><![endif]-->
</body>
</html>