forked from chimeric/dokuwiki-template-dokubook
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.php
172 lines (145 loc) · 4.6 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
<?php
/**
* DokuWiki Template DokuBook
*
* This is the template you need to change for the overall look
* of DokuWiki.
*
* You should leave the doctype at the very top - It should
* always be the very first line of a document.
*
* @link http://wiki.splitbrain.org/template:dokubook
* @author Andreas Gohr <[email protected]>
* @author Michael Klier <[email protected]>
*/
// must be run from within DokuWiki
if (!defined('DOKU_INC')) die();
require_once('tpl_functions.php');
global $REV;
global $ACT;
?>
<!DOCTYPE html>
<html lang="<?php echo $conf['lang']?>" id="document" dir="<?php echo $lang['direction']?>">
<head<?php if (tpl_getConf('opengraphheading')) { ?> prefix="og: http://ogp.me/ns# article: http://ogp.me/ns/article# fb: http://ogp.me/ns/fb# place: http://ogp.me/ns/place# book: http://ogp.me/ns/book#"<?php } ?>>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>
<?php tpl_pagetitle()?>
[<?php echo strip_tags($conf['title'])?>]
</title>
<?php tpl_metaheaders()?>
<?php echo tpl_favicon()?>
<?php tpl_includeFile('meta.html')?>
<!-- change link borders dynamically -->
<style type="text/css">
<?php
if($ACT == 'show' || $ACT == 'edit') {
if($ACT == 'show' && $INFO['ismanager'] && actionOK('revert') && !empty($REV)) {
?>
div.dokuwiki ul#top__nav a.revert
<?php
} else {
?>
div.dokuwiki ul#top__nav a.edit,
div.dokuwiki ul#top__nav a.show,
div.dokuwiki ul#top__nav a.source,
div.dokuwiki ul#top__nav a.restore
<?php
}
} else { ?>
div.dokuwiki ul#top__nav a.<?php echo $ACT;?>
<?php } ?>
{
border-color: #fabd23;
border-bottom: 1px solid #fff;
font-weight: bold;
}
</style>
</head>
<body class="<?php echo $ACT ?>">
<?php tpl_includeFile('topheader.html')?>
<div class="dokuwiki">
<?php html_msgarea()?>
<div id="sidebar_<?php echo tpl_getConf('sb_position')?>" class="sidebar">
<?php dokubook_tpl_logo()?>
<?php
/** @var helper_plugin_translation $translation */
$translation = plugin_load('helper','translation');
if ($translation) echo $translation->showTranslations();
?>
<?php dokubook_tpl_sidebar()?>
</div>
<div id="dokubook_container_<?php echo tpl_getConf('sb_position')?>">
<header class="stylehead">
<div class="header">
<?php tpl_includeFile('pageheader.html')?>
<?php tpl_includeFile('header.html')?>
<div class="logo">
<?php tpl_link(wl(),$conf['title'],'id="dokuwiki__top" accesskey="h" title="[ALT+H]"')?>
</div>
</div>
<ul id="top__nav">
<?php
if(!plugin_isdisabled('npd') && ($npd =& plugin_load('helper', 'npd'))) {
$npb = $npd->html_new_page_button(true);
if($npb) {
print '<li>' . $npb . '</li>' . DOKU_LF;
}
}
foreach(array('revert', 'edit', 'history', 'subscribe') as $act) {
ob_start();
print '<li>';
if($act == 'revert' && !empty($REV)) {
if(tpl_actionlink($act)) {
print '</li>' . DOKU_LF;
ob_end_flush();
} else {
ob_end_clean();
}
} else {
if(tpl_actionlink($act)) {
print '</li>' . DOKU_LF;
ob_end_flush();
} else {
ob_end_clean();
}
}
}
?>
</ul>
</header>
<?php flush()?>
<main class="page">
<?php if($conf['breadcrumbs']){?>
<div class="breadcrumbs">
<?php tpl_breadcrumbs()?>
</div>
<?php }?>
<?php if($conf['youarehere']){?>
<div class="breadcrumbs">
<?php tpl_youarehere() ?>
</div>
<?php }?>
<!-- wikipage start -->
<?php tpl_content()?>
<!-- wikipage stop -->
<div class="meta">
<div class="doc">
<?php tpl_pageinfo()?>
</div>
</div>
<?php tpl_actionlink('top')?>
<div class="clearer"></div>
</main>
<?php flush()?>
<div class="clearer"></div>
<?php dokubook_tpl_footer() ?>
<footer class="stylefoot">
<?php tpl_includeFile('pagefooter.html')?>
</footer>
<?php tpl_includeFile('footer.html')?>
</div>
</div>
<div class="no"><?php /* provide DokuWiki housekeeping, required in all templates */ tpl_indexerWebBug()?></div>
</body>
</html>