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 ********** --> 11*834b0b20SAnika Henke<footer 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 ?> 196053eb28SYurii 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> 216053eb28SYurii 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> 236053eb28SYurii 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> 256053eb28SYurii 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> 276053eb28SYurii K <a href="https://dokuwiki.org/" title="Driven by DokuWiki" <?php echo $target?>><img 2864159a61SAndreas Gohr src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15" 2964159a61SAndreas Gohr alt="Driven by DokuWiki" /></a> 300cec12dbSAndreas Gohr </div> 310e336ca8SAndreas Gohr 32*834b0b20SAnika Henke <?php tpl_includeFile('footer.html'); ?> 33*834b0b20SAnika Henke</div></footer><!-- /footer --> 34