1<?php 2/** 3 * Example footer include 4 * 5 * This file shows you how to use the include hooks. However I recommend to 6 * create your own complete new template instead. 7 */ 8 9$tgt = ($conf['target']['extern']) ? 'target="'.$conf['target']['extern'].'"' : ''; 10?> 11 12<div class="footerinc"> 13 14 <a <?php echo $tgt?> href="http://www.spreadfirefox.com/?q=affiliates&id=0&t=82"> 15 <img border="0" alt="Get Firefox!" title="Get Firefox!" src="http://sfx-images.mozilla.org/affiliates/Buttons/80x15/white_1.gif"/> 16 </a> 17 18 <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> 19 20 <a <?php echo $tgt?> href="http://creativecommons.org/licenses/by-nc-sa/2.0/" rel="license" title="Creative Commons License"><img src="<?php echo DOKU_TPL; ?>images/button-cc.gif" width="80" height="15" alt="Creative Commons License" /></a> 21 22 <a <?php echo $tgt?> href="https://www.paypal.com/xclick/business=andi%40splitbrain.org&item_name=DokuWiki+Donation&no_shipping=1&no_note=1&tax=0&currency_code=EUR&lc=US" title="Donate"><img src="<?php echo DOKU_TPL; ?>images/button-donate.gif" alt="Donate" width="80" height="15" /></a> 23 24 <a <?php echo $tgt?> href="http://www.php.net" title="Powered by PHP"><img src="<?php echo DOKU_TPL; ?>images/button-php.gif" width="80" height="15" alt="Powered by PHP" /></a> 25 26 <a <?php echo $tgt?> href="http://validator.w3.org/check/referer" title="Valid XHTML 1.0"><img src="<?php echo DOKU_TPL; ?>images/button-xhtml.png" width="80" height="15" alt="Valid XHTML 1.0" /></a> 27 28 <a <?php echo $tgt?> href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS"><img src="<?php echo DOKU_TPL; ?>images/button-css.png" width="80" height="15" alt="Valid CSS" /></a> 29 30 <a <?php echo $tgt?> href="http://wiki.splitbrain.org/wiki:dokuwiki" title="Driven by DokuWiki"><img src="<?php echo DOKU_TPL; ?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" /></a> 31 32 33<?php 34/* 35 * The following stuff in HTML comments declares a Creative Commons 36 * License - remove this if you don't want this license for your Wiki 37 */ 38?> 39 40<!-- 41 42<rdf:RDF xmlns="http://web.resource.org/cc/" 43 xmlns:dc="http://purl.org/dc/elements/1.1/" 44 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> 45<Work rdf:about=""> 46 <dc:type rdf:resource="http://purl.org/dc/dcmitype/Text" /> 47 <license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/2.0/" /> 48</Work> 49 50<License rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.0/"> 51 <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> 52 <permits rdf:resource="http://web.resource.org/cc/Distribution" /> 53 <requires rdf:resource="http://web.resource.org/cc/Notice" /> 54 <requires rdf:resource="http://web.resource.org/cc/Attribution" /> 55 <prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" /> 56 <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> 57 <requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> 58</License> 59 60</rdf:RDF> 61 62--> 63 64<?php 65if ($conf['allowdebug']) { 66 echo '<!-- page made in '.round(delta_time(DOKU_START_TIME), 3).' seconds -->'; 67} 68?> 69 70</div> 71