xref: /template/readthedokus/tpl_parts/tpl_sidebar.html (revision e0a2611c3d9e4221b3dc20b05ab65fa9b42b7b85)
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		<div id="sidebar">
7			<?php tpl_includeFile('sidebartop.html') ?>
8			<div style="display:none">
9				<p><strong>Table of Contents</strong></p>
10				<?php tpl_toc()?>
11			</div>
12			<?php tpl_include_page($conf['sidebar'], 1, 1) ?>
13			<?php tpl_includeFile('sidebarbottom.html') ?>
14		</div>
15		<?php tpl_includeFile('tpl_parts/tpl_sidebarfooter.html') ?>
16	</div>
17</nav>
18