1<?php
2/**
3 * Template footer, included in the main and detail files
4 */
5
6// must be run from within DokuWiki
7if (!defined('DOKU_INC')) die();
8?>
9
10<!-- ********** FOOTER is a nav bar class********** -->
11<footer id="dokuwiki__footer" class="footer pad">
12
13
14    <?php
15    $footerPageName = tpl_getConf('footer');
16    if (page_findnearest($footerPageName)) {
17        tpl_flush();
18        tpl_include_page($footerPageName, 1, 1);
19    }
20    ?>
21
22    <?php tpl_license(''); // license text ?>
23
24    <div class="buttons">
25        <?php
26        tpl_license('button', true, false, false); // license button, no wrapper
27        $target = ($conf['target']['extern']) ? 'target="' . $conf['target']['extern'] . '"' : '';
28        ?>
29        <a href="http://validator.w3.org/check/referer" title="Valid HTML5" <?php echo $target ?>><img
30                src="<?php echo tpl_basedir(); ?>images/button-html5.png" width="80" height="15"
31                alt="Valid HTML5"/></a>
32        <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3"
33           title="Valid CSS" <?php echo $target ?>><img
34                src="<?php echo tpl_basedir(); ?>images/button-css.png" width="80" height="15"
35                alt="Valid CSS"/></a>
36        <a href="http://dokuwiki.org/" title="Driven by DokuWiki" <?php echo $target ?>><img
37                src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15"
38                alt="Driven by DokuWiki"/></a>
39    </div>
40    <div>
41        <a href="https://gerardnico.com/dokuwiki/bootie" title="Designed by Nickeau">Bootie Template</a>
42        designed by <a href="https://gerardnico.com/" title="Nickeau WebSite">Gerardnico</a> with the help of <a
43            href="https://getbootstrap.com/" title="The Bootstrap">Bootstrap</a>.
44    </div>
45
46</footer>
47
48
49