tpl_footer.php 1.6 KB

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