62 lines
2.7 KiB
HTML
62 lines
2.7 KiB
HTML
<?php
|
|
/**
|
|
* Example footer include
|
|
*
|
|
* This file shows you how to use the include hooks. However I recommend to
|
|
* create your own complete new template instead.
|
|
*/
|
|
|
|
$tgt = ($conf['target']['extern']) ? 'target="'.$conf['target']['extern'].'"' : '';
|
|
?>
|
|
|
|
<div class="footerinc">
|
|
<a <?php echo $tgt?> href="<?php echo DOKU_BASE; ?>feed.php" title="Recent changes RSS feed"><img src="<?php echo tpl_basedir(); ?>images/button-rss.png" width="80" height="15" alt="Recent changes RSS feed" /></a>
|
|
|
|
<a <?php echo $tgt?> href="http://creativecommons.org/licenses/by-nc-sa/2.0/" rel="license" title="Creative Commons License"><img src="<?php echo tpl_basedir(); ?>images/button-cc.gif" width="80" height="15" alt="Creative Commons License" /></a>
|
|
|
|
<a <?php echo $tgt?> href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=wikidesign%40gmail%2ecom&item_name=DokuWiki%20Template&item_number=Minima&no_shipping=2&no_note=1&tax=0¤cy_code=EUR&bn=PP%2dDonationsBF&charset=UTF%2d8" title="Donate"><img src="<?php echo tpl_basedir(); ?>images/button-donate.gif" alt="Donate" width="80" height="15" /></a>
|
|
|
|
<a <?php echo $tgt?> href="http://www.wikidesign.ch/" title="Minima Template by Wikidesign"><img src="<?php echo tpl_basedir(); ?>images/button-wikidesign.gif" width="80" height="15" alt="Minima Template by Wikidesign" /></a>
|
|
|
|
<a <?php echo $tgt?> href="http://wiki.splitbrain.org/wiki:dokuwiki" title="Driven by DokuWiki"><img src="<?php echo tpl_basedir(); ?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" /></a>
|
|
|
|
|
|
<?php
|
|
/*
|
|
* The following stuff in HTML comments declares a Creative Commons
|
|
* License - remove this if you don't want this license for your Wiki
|
|
*/
|
|
?>
|
|
|
|
<!--
|
|
|
|
<rdf:RDF xmlns="http://web.resource.org/cc/"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
<Work rdf:about="">
|
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/Text" />
|
|
<license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/2.0/" />
|
|
</Work>
|
|
|
|
<License rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.0/">
|
|
<permits rdf:resource="http://web.resource.org/cc/Reproduction" />
|
|
<permits rdf:resource="http://web.resource.org/cc/Distribution" />
|
|
<requires rdf:resource="http://web.resource.org/cc/Notice" />
|
|
<requires rdf:resource="http://web.resource.org/cc/Attribution" />
|
|
<prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" />
|
|
<permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
|
<requires rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
|
</License>
|
|
|
|
</rdf:RDF>
|
|
|
|
-->
|
|
|
|
<?php
|
|
if ($conf['allowdebug']) {
|
|
echo '<!-- page made in '.round(delta_time(DOKU_START_TIME), 3).' seconds -->';
|
|
}
|
|
?>
|
|
|
|
</div>
|