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 10<div align="center" class="footerinc"> 11 <a target="_blank" href="<?=DOKU_BASE?>feed.php" title="Recent changes RSS feed"><img src="<?=DOKU_TPL?>images/button-rss.png" width="80" height="15" alt="Recent changes RSS feed" border="0" /></a> 12 13 <a target="_blank" href="http://creativecommons.org/licenses/by-nc-sa/2.0/" rel="license" title="Creative Commons License"><img src="<?=DOKU_TPL?>images/button-cc.gif" width="80" height="15" alt="Creative Commons License" border="0" /></a> 14 15 <a target="_blank" 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="<?=DOKU_TPL?>images/button-donate.gif" alt="Donate" border="0" /></a> 16 17 <a target="_blank" href="http://www.php.net" title="Powered by PHP"><img src="<?=DOKU_TPL?>images/button-php.gif" width="80" height="15" alt="Powered by PHP" border="0" /></a> 18 19 <a target="_blank" href="http://validator.w3.org/check/referer" title="Valid XHTML 1.0"><img src="<?=DOKU_TPL?>images/button-xhtml.png" width="80" height="15" alt="Valid XHTML 1.0" border="0" /></a> 20 21 <a target="_blank" href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS"><img src="<?=DOKU_TPL?>images/button-css.png" width="80" height="15" alt="Valid CSS" border="0" /></a> 22 23 <a target="_blank" href="http://wiki.splitbrain.org/wiki:dokuwiki" title="Driven by DokuWiki"><img src="<?=DOKU_TPL?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" border="0" /></a> 24 25 26<?php 27/* 28 * The following stuff in HTML comments declares a Creative Commons 29 * License - remove this if you don't want this license for your Wiki 30 */ 31?> 32 33<!-- 34 35<rdf:RDF xmlns="http://web.resource.org/cc/" 36 xmlns:dc="http://purl.org/dc/elements/1.1/" 37 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> 38<Work rdf:about=""> 39 <dc:type rdf:resource="http://purl.org/dc/dcmitype/Text" /> 40 <license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/2.0/" /> 41</Work> 42 43<License rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.0/"> 44 <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> 45 <permits rdf:resource="http://web.resource.org/cc/Distribution" /> 46 <requires rdf:resource="http://web.resource.org/cc/Notice" /> 47 <requires rdf:resource="http://web.resource.org/cc/Attribution" /> 48 <prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" /> 49 <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> 50 <requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> 51</License> 52 53</rdf:RDF> 54 55--> 56</div> 57