xref: /dokuwiki/lib/tpl/dokuwiki/tpl_footer.php (revision ae45007edaa7e6d72f10a30a02548edb34ab3bfa)
191626c7fSAnika Henke<?php
2*ae45007eSAnika Henke/**
3*ae45007eSAnika Henke * Template footer, included in the main and detail files
4*ae45007eSAnika Henke */
5*ae45007eSAnika 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        ?>
19a4380643SAnika Henke        <a href="http://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>
21a4380643SAnika Henke        <a href="http://www.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>
23a4380643SAnika Henke        <a href="http://validator.w3.org/check/referer" title="Valid XHTML 1.0" <?php echo $target?>><img
24a4380643SAnika Henke            src="<?php echo tpl_basedir(); ?>images/button-xhtml.png" width="80" height="15" alt="Valid XHTML 1.0" /></a>
25a4380643SAnika Henke        <a href="http://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>
27a4380643SAnika Henke        <a href="http://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
32e5d4768dSAndreas Gohr<?php tpl_includeFile('footer.html') ?>
33