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