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  <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>
14
15  <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>
16
17  <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&currency_code=EUR&bn=PP%2dDonationsBF&charset=UTF%2d8" title="Donate"><img src="<?php echo DOKU_TPL; ?>images/button-donate.gif" alt="Donate" width="80" height="15" /></a>
18
19  <a <?php echo $tgt?> href="http://www.wikidesign.ch/" title="Minima Template by Wikidesign"><img src="<?php echo DOKU_TPL; ?>images/button-wikidesign.gif" width="80" height="15" alt="Minima Template by Wikidesign" /></a>
20
21  <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>
22
23
24<?php
25/*
26 * The following stuff in HTML comments declares a Creative Commons
27 * License - remove this if you don't want this license for your Wiki
28 */
29?>
30
31<!--
32
33<rdf:RDF xmlns="http://web.resource.org/cc/"
34    xmlns:dc="http://purl.org/dc/elements/1.1/"
35    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
36<Work rdf:about="">
37   <dc:type rdf:resource="http://purl.org/dc/dcmitype/Text" />
38   <license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/2.0/" />
39</Work>
40
41<License rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.0/">
42   <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
43   <permits rdf:resource="http://web.resource.org/cc/Distribution" />
44   <requires rdf:resource="http://web.resource.org/cc/Notice" />
45   <requires rdf:resource="http://web.resource.org/cc/Attribution" />
46   <prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" />
47   <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
48   <requires rdf:resource="http://web.resource.org/cc/ShareAlike" />
49</License>
50
51</rdf:RDF>
52
53-->
54
55<?php
56if ($conf['allowdebug']) {
57    echo '<!-- page made in '.round(delta_time(DOKU_START_TIME), 3).' seconds -->';
58}
59?>
60
61</div>
62