Newer
Older
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fn="http://www.w3.org/2005/xpath-functions" >
<xsl:template name="footer">
<footer id="footer">
<hr/>
<div class="container footer-container">
<div class="footer-links">
<ul class="footer-navigation">
<xsl:for-each select="$loaded_navigation_xml/navi-below/item">
<li>
<xsl:call-template name="addLink">
<xsl:with-param name="href" select="@href"/>
<xsl:with-param name="target" select="@target"/>
</xsl:call-template>
</li>
</xsl:for-each>
<xsl:call-template name="navigation.logout"/>
<xsl:call-template name="navigation.login"/>
</ul>
<div class="footer-copyright">
<xsl:text>© </xsl:text>
<xsl:value-of select="document('i18n:project.title')/i18n/text()" />
<xsl:text>, </xsl:text>
<xsl:value-of select="document('i18n:project.year')/i18n/text()" />
<xsl:text> (Version </xsl:text>
<xsl:value-of select="document('i18n:project.version')/i18n/text()" />
<xsl:text> powered by MyCoRe</xsl:text>
<xsl:text>)</xsl:text>
</div>
</div>
</footer>
</xsl:template>
</xsl:stylesheet>