1<!-- 2<?php 3/** 4 * Example footer include 5 * 6 * This file shows you how to use the include hooks. However I recommend to 7 * create your own complete new template instead. 8 */ 9 10$tgt = ($conf['target']['extern']) ? 'target="'.$conf['target']['extern'].'"' : ''; 11?> 12 13<div class="footerinc"> 14 15 <a <?php echo $tgt?> href="<?php echo DOKU_BASE; ?>feed.php" title="Recent changes RSS feed"><img src="<?php echo DOKU_TPL; ?>images/button-rss.png" width="80" height="15" alt="Recent changes RSS feed" /></a> 16 17 <a <?php echo $tgt?> href="http://dokuwiki.org/" title="Driven by DokuWiki"><img src="<?php echo DOKU_TPL; ?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" /></a> 18 19<?php 20if ($conf['allowdebug']) { 21 echo '<!-- page made in '.round(delta_time(DOKU_START_TIME), 3).' seconds -->'; 22} 23?> 24</div> 25<?php include(dirname(__FILE__).'/dwtb.html') ?> 26--> 27