191626c7fSAnika Henke<?php 2*d4f83172SAndreas Gohr 3ae45007eSAnika Henke/** 4ae45007eSAnika Henke * Template footer, included in the main and detail files 5ae45007eSAnika Henke */ 6ae45007eSAnika Henke 791626c7fSAnika Henke// must be run from within DokuWiki 891626c7fSAnika Henkeif (!defined('DOKU_INC')) die(); 991626c7fSAnika Henke?> 1091626c7fSAnika Henke 110e336ca8SAndreas Gohr<!-- ********** FOOTER ********** --> 12834b0b20SAnika Henke<footer id="dokuwiki__footer"><div class="pad"> 13a4380643SAnika Henke <?php tpl_license(''); // license text ?> 14a4380643SAnika Henke 15a4380643SAnika Henke <div class="buttons"> 160cec12dbSAndreas Gohr <?php 17a4380643SAnika Henke tpl_license('button', true, false, false); // license button, no wrapper 18a4380643SAnika Henke $target = ($conf['target']['extern']) ? 'target="' . $conf['target']['extern'] . '"' : ''; 190cec12dbSAndreas Gohr ?> 206053eb28SYurii K <a href="https://www.dokuwiki.org/donate" title="Donate" <?php echo $target?>><img 21a4380643SAnika Henke src="<?php echo tpl_basedir(); ?>images/button-donate.gif" width="80" height="15" alt="Donate" /></a> 226053eb28SYurii K <a href="https://php.net" title="Powered by PHP" <?php echo $target?>><img 23a4380643SAnika Henke src="<?php echo tpl_basedir(); ?>images/button-php.gif" width="80" height="15" alt="Powered by PHP" /></a> 246053eb28SYurii K <a href="//validator.w3.org/check/referer" title="Valid HTML5" <?php echo $target?>><img 2589a539f2SNick Reilingh src="<?php echo tpl_basedir(); ?>images/button-html5.png" width="80" height="15" alt="Valid HTML5" /></a> 266053eb28SYurii K <a href="//jigsaw.w3.org/css-validator/check/referer?profile=css3" title="Valid CSS" <?php echo $target?>><img 27a4380643SAnika Henke src="<?php echo tpl_basedir(); ?>images/button-css.png" width="80" height="15" alt="Valid CSS" /></a> 286053eb28SYurii K <a href="https://dokuwiki.org/" title="Driven by DokuWiki" <?php echo $target?>><img 2964159a61SAndreas Gohr src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15" 3064159a61SAndreas Gohr alt="Driven by DokuWiki" /></a> 310cec12dbSAndreas Gohr </div> 320e336ca8SAndreas Gohr 33834b0b20SAnika Henke <?php tpl_includeFile('footer.html'); ?> 34834b0b20SAnika Henke</div></footer><!-- /footer --> 35