xref: /template/readthedokus/tpl_parts/tpl_sidebar.html (revision 7c9d2d73c4d38d89e9b0ee86a4068ffb6012ad14)
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_sidebar-header.html') ?>
6		<?php tpl_includeFile('sidebar-header.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('sidebar-footer.html') ?>
14		<?php tpl_includeFile('tpl_parts/tpl_sidebar-footer.html') ?>
15	</div>
16</nav>
17