yolanda/trunk/xsl/xhtml/header.xsl
erlehmann 1ad9f63be7 lolol ?
git-svn-id: http://yolanda.mister-muffin.de/svn@359 7eef14d0-6ed0-489d-bf55-20463b2d70db
2008-07-30 22:36:00 +00:00

98 lines
3.1 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>
<xsl:template name="header">
<a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings[@id='path_root']" />
</xsl:attribute>
<img id="logo">
<xsl:attribute name="src">
<xsl:value-of select="$site_strings[@id='path_root']" />/images/logo.png
</xsl:attribute>
</img>
</a>
<ul id="header" role="navigation">
<xsl:choose>
<xsl:when test="string-length(//@username)=0">
<li>
<a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings[@id='path_register']" />
</xsl:attribute>
<xsl:value-of select="$lang_strings[@id='register']" />
</a>
</li>
</xsl:when>
<xsl:otherwise>
<li>
<a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings[@id='path_settings']" />
</xsl:attribute>
<xsl:value-of select="$lang_strings[@id='settings_details']" />
</a>
</li>
<!--
<xsl:value-of select="$lang_strings[@id='logged_in_as']" />
<li>
<a>
<xsl:attribute name="href">
user/<xsl:value-of select="//@username" />
</xsl:attribute>
<xsl:value-of select="//@username" />
</a>
</li>
-->
<li id="upload">
<a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings[@id='path_upload']" />
</xsl:attribute>
<xsl:value-of select="$lang_strings[@id='header_upload-video']" />
</a>
</li>
<!--
<li id="">
<a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings[@id='path_settings']" />
</xsl:attribute>
<xsl:value-of select="$lang_strings[@id='settings_details']" />
</a>
</li>
-->
<li id="logout">
<a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings[@id='path_logout']" />
</xsl:attribute>
<xsl:value-of select="$lang_strings[@id='logout']" />
</a>
</li>
</xsl:otherwise>
</xsl:choose>
</ul>
</xsl:template>
</xsl:stylesheet>