xref: /dokuwiki/lib/tpl/dokuwiki/tpl_footer.php (revision 6053eb28e44e346fe5042aeb39c6f6b487ccc17a)
191626c7fSAnika Henke<?php
2ae45007eSAnika Henke/**
3ae45007eSAnika Henke * Template footer, included in the main and detail files
4ae45007eSAnika Henke */
5ae45007eSAnika Henke
691626c7fSAnika Henke// must be run from within DokuWiki
791626c7fSAnika Henkeif (!defined('DOKU_INC')) die();
891626c7fSAnika Henke?>
991626c7fSAnika Henke
100e336ca8SAndreas Gohr<!-- ********** FOOTER ********** -->
110e336ca8SAndreas Gohr<div id="dokuwiki__footer"><div class="pad">
12a4380643SAnika Henke    <?php tpl_license(''); // license text ?>
13a4380643SAnika Henke
14a4380643SAnika Henke    <div class="buttons">
150cec12dbSAndreas Gohr        <?php
16a4380643SAnika Henke            tpl_license('button', true, false, false); // license button, no wrapper
17a4380643SAnika Henke            $target = ($conf['target']['extern']) ? 'target="'.$conf['target']['extern'].'"' : '';
180cec12dbSAndreas Gohr        ?>
19*6053eb28SYurii K        <a href="https://www.dokuwiki.org/donate" title="Donate" <?php echo $target?>><img
20a4380643SAnika Henke            src="<?php echo tpl_basedir(); ?>images/button-donate.gif" width="80" height="15" alt="Donate" /></a>
21*6053eb28SYurii K        <a href="https://php.net" title="Powered by PHP" <?php echo $target?>><img
22a4380643SAnika Henke            src="<?php echo tpl_basedir(); ?>images/button-php.gif" width="80" height="15" alt="Powered by PHP" /></a>
23*6053eb28SYurii K        <a href="//validator.w3.org/check/referer" title="Valid HTML5" <?php echo $target?>><img
2489a539f2SNick Reilingh            src="<?php echo tpl_basedir(); ?>images/button-html5.png" width="80" height="15" alt="Valid HTML5" /></a>
25*6053eb28SYurii K        <a href="//jigsaw.w3.org/css-validator/check/referer?profile=css3" title="Valid CSS" <?php echo $target?>><img
26a4380643SAnika Henke            src="<?php echo tpl_basedir(); ?>images/button-css.png" width="80" height="15" alt="Valid CSS" /></a>
27*6053eb28SYurii K        <a href="https://dokuwiki.org/" title="Driven by DokuWiki" <?php echo $target?>><img
28a4380643SAnika Henke            src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" /></a>
290cec12dbSAndreas Gohr    </div>
300e336ca8SAndreas Gohr</div></div><!-- /footer -->
310e336ca8SAndreas Gohr
32089c81d5SMatt Perry<?php
33089c81d5SMatt Perrytpl_includeFile('footer.html');
34