1<?php
2/**
3 * Template footer, included in the main and detail files
4 *
5 * Modifed by Gero Gothe <practical@medizin-lernen.de>
6 */
7
8// must be run from within DokuWiki
9if (!defined('DOKU_INC')) die();
10?>
11
12 <!-- BREADCRUMBS -->
13    <?php if($conf['breadcrumbs'] || $conf['youarehere']): ?>
14        <div class="breadcrumbs">
15
16            <?php if($conf['breadcrumbs']): ?>
17                <div class="trace"><?php tpl_breadcrumbs() ?></div>
18
19            <?php endif ?>
20            <?php if($conf['youarehere']): ?>
21                <div class="youarehere">
22
23					<?php tpl_youarehere() ?>
24				</div>
25            <?php endif ?>
26        </div>
27    <?php endif ?>
28
29
30
31<!-- ********** FOOTER ********** -->
32<div id="dokuwiki__footer"><div class="pad">
33    <?php tpl_license(''); // license text ?>
34
35    <div class="buttons">
36        <?php
37            tpl_license('button', true, false, false); // license button, no wrapper
38            $target = ($conf['target']['extern']) ? 'target="'.$conf['target']['extern'].'"' : '';
39        ?>
40        <a href="https://www.dokuwiki.org/donate" title="Donate" <?php echo $target?>><img
41            src="<?php echo tpl_basedir(); ?>images/button-donate.gif" width="80" height="15" alt="Donate" /></a>
42        <a href="https://php.net" title="Powered by PHP" <?php echo $target?>><img
43            src="<?php echo tpl_basedir(); ?>images/button-php.gif" width="80" height="15" alt="Powered by PHP" /></a>
44        <a href="//validator.w3.org/check/referer" title="Valid HTML5" <?php echo $target?>><img
45            src="<?php echo tpl_basedir(); ?>images/button-html5.png" width="80" height="15" alt="Valid HTML5" /></a>
46        <a href="//jigsaw.w3.org/css-validator/check/referer?profile=css3" title="Valid CSS" <?php echo $target?>><img
47            src="<?php echo tpl_basedir(); ?>images/button-css.png" width="80" height="15" alt="Valid CSS" /></a>
48        <a href="https://dokuwiki.org/" title="Driven by DokuWiki" <?php echo $target?>><img
49            src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" /></a>
50
51
52    </div>
53
54	<br><?php echo '<span style="color:gray;font-size:8px;">'.$_SERVER['HTTP_USER_AGENT'].' IP:'.$_SERVER['REMOTE_ADDR'].'</span>'; ?>
55
56
57</div></div><!-- /footer -->
58
59<?php
60tpl_includeFile('footer.html');
61