1<?php 2/** 3 * Footer template for Dokuwiki Kiwiki Theme 4 */ 5 6// must be run from within DokuWiki 7if (!defined('DOKU_INC')) die(); 8 9?> 10<footer id="dokuwiki__footer"> 11 <div class="meta"> 12 13 <?php if (tpl_getConf('ShowUserFooter')){ 14 echo '<div class="user">'; 15 tpl_userinfo(); 16 echo '</div>'; 17 } 18 ?> 19 20 <?php if (tpl_getConf('ShowACLFooter') && ($INFO['editable'])){ 21 echo '<div class="acl">'; 22 Kiwiki_Functions::tpl_aclinfo(); 23 echo '</div>'; 24 } 25 ?> 26 27 <div class="doc"><?php tpl_pageinfo() ?></div> 28 </div> 29 <?php tpl_license('button') ?> 30 <?php tpl_includeFile('footer.html') ?> 31</footer> 32