1<?php 2// must be run from within DokuWiki 3if (!defined('DOKU_INC')) die(); 4?> 5 6<!-- ********** FOOTER ********** --> 7<div id="dokuwiki__footer"><div class="pad"> 8 <?php tpl_license(''); // license text ?> 9 10 <div class="buttons"> 11 <?php 12 tpl_license('button', true, false, false); // license button, no wrapper 13 $target = ($conf['target']['extern']) ? 'target="'.$conf['target']['extern'].'"' : ''; 14 ?> 15 <a href="http://www.dokuwiki.org/donate" title="Donate" <?php echo $target?>><img 16 src="<?php echo tpl_basedir(); ?>images/button-donate.gif" width="80" height="15" alt="Donate" /></a> 17 <a href="http://www.php.net" title="Powered by PHP" <?php echo $target?>><img 18 src="<?php echo tpl_basedir(); ?>images/button-php.gif" width="80" height="15" alt="Powered by PHP" /></a> 19 <a href="http://validator.w3.org/check/referer" title="Valid XHTML 1.0" <?php echo $target?>><img 20 src="<?php echo tpl_basedir(); ?>images/button-xhtml.png" width="80" height="15" alt="Valid XHTML 1.0" /></a> 21 <a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3" title="Valid CSS" <?php echo $target?>><img 22 src="<?php echo tpl_basedir(); ?>images/button-css.png" width="80" height="15" alt="Valid CSS" /></a> 23 <a href="http://dokuwiki.org/" title="Driven by DokuWiki" <?php echo $target?>><img 24 src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" /></a> 25 </div> 26</div></div><!-- /footer --> 27 28<?php tpl_includeFile('footer.html') ?> 29