new structure

This commit is contained in:
Jana Deutschländer 2016-12-15 11:40:18 +01:00
commit d0b97fa27f
12 changed files with 206 additions and 100 deletions

15
tpl/nav-sitetools.php Normal file
View file

@ -0,0 +1,15 @@
<?php
if (!defined('DOKU_INC')) die();
?>
<nav id="dokuwiki__sitetools" class="nav-usertools">
<h6 class="sr-only" role="heading" aria-level="2"><?php echo $lang['site_tools']; ?></h6>
<ul>
<?php
tpl_toolsevent('sitetools', array(
'recent' => tpl_action('recent', 1, 'li', 1),
'media' => tpl_action('media', 1, 'li', 1),
'index' => tpl_action('index', 1, 'li', 1),
));
?>
</ul>
</nav>