1<?php
2/**
3 * Template footer, included in the main and detail files
4 */
5
6// must be run from within DokuWiki
7if (!defined('DOKU_INC')) die();
8?>
9
10<!-- ********** FOOTER ********** -->
11<div id="dokuwiki__footer"><div class="pad">
12    <?php tpl_license(''); // license text ?>
13</div>
14<?php
15    if ($_SERVER['REMOTE_USER']) {
16		echo '<div class="pad">';
17        tpl_userinfo(); /* 'Logged in as ...' */
18		echo '</div>';
19    }
20?>
21</div><!-- /footer -->
22
23<?php tpl_includeFile('footer.html') ?>
24