forked from giterlizzi/dokuwiki-template-bootstrap3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tpl_sidebar.php
executable file
·26 lines (24 loc) · 952 Bytes
/
tpl_sidebar.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
<?php
/**
* DokuWiki Bootstrap3 Template: Sidebar
*
* @link http://dokuwiki.org/template:bootstrap3
* @author Giuseppe Di Terlizzi <[email protected]>
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
*/
// must be run from within DokuWiki
if (!defined('DOKU_INC')) die();
?>
<!-- ********** ASIDE ********** -->
<aside id="<?php echo $sidebar_id ?>" class="dw__sidebar <?php echo $sidebar_class ?> hidden-print">
<div class="content">
<div class="toogle hidden-lg hidden-md hidden-sm" data-toggle="collapse" data-target="#<?php echo $sidebar_id ?> .collapse">
<i class="fa fa-fw fa-th-list"></i> <?php echo $lang['sidebar'] ?>
</div>
<div class="collapse in">
<?php tpl_includeFile($sidebar_header) ?>
<?php bootstrap3_sidebar(tpl_include_page($sidebar_page, 0, 1)) /* includes the nearest sidebar page */ ?>
<?php tpl_includeFile($sidebar_footer) ?>
</div>
</div>
</aside>