forked from giterlizzi/dokuwiki-template-bootstrap3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.php
executable file
·168 lines (124 loc) · 5.71 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
<?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
?><!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 bootstrap3_page_browser_title() ?></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 tpl_metaheaders() ?>
<?php bootstrap3_google_analytics() ?>
<!--[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]-->
</head>
<?php tpl_flush() ?>
<body class="<?php echo trim(implode(' ', $body_classes)) ?>">
<!--[if IE 8 ]><div id="IE8"><![endif]-->
<header id="dokuwiki__header" class="dokuwiki container<?php echo (bootstrap3_is_fluid_container()) ? '-fluid' : '' ?>">
<?php tpl_includeFile('topheader.html') ?>
<?php require_once('tpl_navbar.php'); ?>
<?php tpl_includeFile('header.html') ?>
</header>
<div id="dokuwiki__top" class="dokuwiki container<?php echo (bootstrap3_is_fluid_container()) ? '-fluid' : '' ?>">
<?php tpl_includeFile('social.html') ?>
<?php require_once('tpl_breadcrumbs.php'); ?>
<p class="pageId text-right">
<?php if(bootstrap3_conf('showPageId')): ?><span class="label label-primary"><?php echo hsc($ID) ?></span><?php endif; ?>
</p>
<div id="dw__msgarea">
<?php bootstrap3_html_msgarea() ?>
</div>
<main class="main row" role="main">
<?php bootstrap3_sidebar_include('left') ?>
<!-- ********** CONTENT ********** -->
<article id="dokuwiki__content" class="<?php echo bootstrap3_container_grid() ?>" <?php echo ((bootstrap3_conf('semantic')) ? sprintf('itemscope itemtype="http://schema.org/%s" itemref="dw__license"', bootstrap3_conf('schemaOrgType')) : '') ?>>
<div class="<?php echo ($page_on_panel ? 'panel panel-default' : 'no-panel') ?>" <?php echo ((bootstrap3_conf('semantic')) ? 'itemprop="articleBody"' : '') ?>>
<div class="page <?php echo ($page_on_panel ? 'panel-body' : '') ?>">
<?php
// Page icons (print, email, share link, etc.)
require_once('tpl_page_icons.php');
tpl_flush(); /* flush the output buffer */
// Page-Header DokuWiki page
tpl_includeFile('pageheader.html');
// Page-Header DokuWiki page
if ($ACT == 'show') tpl_include_page('pageheader', 1, 1);
// render the content into buffer for later use
ob_start();
tpl_content(false);
$content = bootstrap3_content(ob_get_clean());
$toc = bootstrap3_toc(true);
// Include Page Tools
require_once('tpl_page_tools.php');
// Include the TOC layout
if ($toc) echo $toc;
echo '<div class="dw-content">';
echo $content;
echo '</div>';
tpl_flush();
// Page-Footer hook
tpl_includeFile('pagefooter.html');
// Page-Footer DokuWiki page
if ($ACT == 'show') tpl_include_page('pagefooter', 1, 1);
?>
</div>
</div>
</article>
<?php bootstrap3_sidebar_include('right') ?>
</main>
<div class="small text-right">
<?php if (bootstrap3_conf('showPageInfo')): ?>
<span class="docInfo" id="dw__pageinfo">
<?php bootstrap3_pageinfo() /* 'Last modified' etc */ ?>
</span>
<?php endif ?>
<?php if (bootstrap3_conf('showLoginOnFooter')): ?>
<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 if ($conf['license']): ?>
<div id="dw__license" class="text-center small" <?php ((bootstrap3_conf('semantic')) ? 'itemprop="license"' : '') ?>>
<?php echo tpl_license('') ?>
</div>
<?php endif; ?>
<?php
// DokuWiki badges
require_once('tpl_badges.php');
// Footer hook
tpl_includeFile('footer.html');
// Footer DokuWiki page
require_once('tpl_footer.php');
// Cookie-Law banner
require_once('tpl_cookielaw.php');
// Provide DokuWiki housekeeping, required in all templates
tpl_indexerWebBug();
?>
<a href="#dokuwiki__top" class="back-to-top hidden-print btn btn-default btn-sm" title="<?php echo $lang['skip_to_content'] ?>" accesskey="t"><i class="fa fa-chevron-up"></i></a>
<div id="screen__mode"><?php /* helper to detect CSS media query in script.js */ ?>
<span class="visible-xs-block"></span>
<span class="visible-sm-block"></span>
<span class="visible-md-block"></span>
<span class="visible-lg-block"></span>
</div>
</div>
<!--[if lte IE 8 ]></div><![endif]-->
</body>
</html>