xref: /template/readthedokus/tpl_parts/tpl_sidebar.html (revision 0af367241cbccaad982c38b1eae8dc2cf6081351)
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				<p><strong>Table of contents</strong></p>
10				<?php tpl_toc()?>
11			</div>
12			<?php tpl_include_page($conf['sidebar'], 1, 1) ?>
13		</div>
14		<?php tpl_includeFile('sidebarfooter.html') ?>
15		<?php tpl_includeFile('tpl_parts/tpl_sidebarfooter.html') ?>
16	</div>
17</nav>
18