You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
3.0 KiB
XML
78 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:rss="http://purl.org/rss/1.0/"
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns:date="http://exslt.org/dates-and-times" exclude-result-prefixes="xsl rss rdf">
|
|
|
|
<xsl:template name="footer">
|
|
<footer id="footer">
|
|
<!-- ### Footer ### -->
|
|
<xsl:comment>
|
|
<xsl:text> ### Footer ### </xsl:text>
|
|
</xsl:comment>
|
|
<ul>
|
|
<li>
|
|
<!-- Creative Commons License -->
|
|
<xsl:comment>
|
|
<xsl:text> Creative Commons License </xsl:text>
|
|
</xsl:comment>
|
|
<a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.de">
|
|
<img src="{$baseurl}images/footer/cc-somerights20.png"
|
|
width="88" height="31"
|
|
alt="Creative Commons License"
|
|
title="Creative Commons Attribution-ShareAlike 2.0 Germany License" />
|
|
</a>
|
|
<xsl:comment>
|
|
<xsl:text>
|
|
<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/Interactive" />
|
|
<license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/de/" />
|
|
</Work>
|
|
|
|
<License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/de/">
|
|
<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" />
|
|
<permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
|
<requires rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
|
</License>
|
|
</rdf:RDF>
|
|
</xsl:text>
|
|
</xsl:comment>
|
|
</li>
|
|
<li>
|
|
<p>
|
|
<a href="{$baseurl}impressum.html">Impressum</a>
|
|
</p>
|
|
<p id="last-built">
|
|
<!-- bleibt auf c3d2-web leer, aber lokal funktionierts:
|
|
<xsl:value-of select="concat('built ', translate(substring-before(date:date-time(), '+'), 'T', ' '))" />
|
|
vermute, der Delimiter existiert nicht zwangsläufig; andere Variante im Versuch
|
|
-->
|
|
<xsl:value-of select="concat('built ', translate(substring(date:date-time(), 0, 20), 'T', ' '))" />
|
|
</p>
|
|
</li>
|
|
<li>
|
|
<a href="http://www.w3.org/html/logo/">
|
|
<img src="{$baseurl}images/footer/html5-badge-h-multimedia-semantics.png"
|
|
width="83" height="32"
|
|
alt="HTML5 Powered with Multimedia, and Semantics"
|
|
title="HTML5 Powered with Multimedia, and Semantics"/>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<small class="hidden">
|
|
Cover, Concealment, Camouflage, Denial and Deception
|
|
</small>
|
|
</footer>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|