xref: /template/sprintdoc/tpl/nav-page-tools.php (revision 1fc95e4da6733dbfd6643acd48333894b4f013bf)
1<?php
2if (!defined('DOKU_INC')) {
3    die();
4}
5?>
6
7
8<nav id="dokuwiki__pagetools">
9    <div class="tools">
10
11        <?php include('nav-status.php'); ?>
12        <ul>
13            <?php
14            $data = dokuwiki\template\sprintdoc\tpl::assemblePageTools();
15
16            foreach ($data['items'] as $k => $html) {
17                echo $html;
18            }
19
20            ?>
21        </ul>
22    </div>
23</nav>
24