yolanda/trunk/xsl/xhtml/searchbar.xsl
josch 0a696bd130 changed locale to lang
git-svn-id: http://yolanda.mister-muffin.de/svn@325 7eef14d0-6ed0-489d-bf55-20463b2d70db
2008-04-27 16:53:38 +00:00

72 lines
2.5 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="searchbar">
<div class="searchbar">
<form method="get" enctype="application/x-www-form-urlencoded">
<xsl:attribute name="action">
<xsl:value-of select="$site_strings[@id='path_search']" />
</xsl:attribute>
<fieldset>
<label for="query">
<xsl:value-of select="$lang_strings[@id='search']" />:<br />
</label>
<input type="text" name="query">
<xsl:attribute name="value">
<xsl:if test="//results/@argument='query'">
<xsl:value-of select="//results/@value" />
</xsl:if>
</xsl:attribute>
</input>
<input type="submit">
<xsl:attribute name="value">
<xsl:value-of select="$lang_strings[@id='button_find']" />
</xsl:attribute>
</input>
</fieldset>
</form>
<ul id="queries" role="navigation">
<li id="search_custom_one">
<a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings[@id='path_query_custom_one']" />
</xsl:attribute>
<xsl:value-of select="$lang_strings[@id='search_custom_one']" />
</a>
</li>
<li id="search_custom_two">
<a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings[@id='path_query_custom_two']" />
</xsl:attribute>
<xsl:value-of select="$lang_strings[@id='search_custom_two']" />
</a>
</li>
<li id="search_custom_three">
<a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings[@id='path_query_custom_three']" />
</xsl:attribute>
<xsl:value-of select="$lang_strings[@id='search_custom_three']" />
</a>
</li>
</ul>
</div>
</xsl:template>
</xsl:stylesheet>