xref: /template/readthedokus/tpl_parts/tpl_sidebar.html (revision 91e6dd52d6eea6426d83a6d3c57ae4e79e5258d8)
1<?php global $conf, $lang; ?>
2
3<nav id="dokuwiki__aside" aria-label="<?php echo $lang['sidebar'] ?>">
4	<div class="aside include group">
5		<?php tpl_includeFile('tpl_parts/tpl_sidebarheader.html') ?>
6		<?php tpl_includeFile('sidebarheader.html') ?>
7		<div id="sidebar">
8			<div style="display:none">
9				<?php tpl_toc()?>
10			</div>
11			<?php tpl_include_page($conf['sidebar'], 1, 1) ?>
12		</div>
13		<?php tpl_includeFile('sidebarfooter.html') ?>
14		<?php tpl_includeFile('tpl_parts/tpl_sidebarfooter.html') ?>
15	</div>
16</nav>
17