|
|
|
@ -23,10 +23,19 @@ |
|
|
|
|
<xsl:apply-templates select="diritem" /> |
|
|
|
|
</xsl:template> |
|
|
|
|
|
|
|
|
|
<xsl:template match="diritem"> |
|
|
|
|
<a class="diritem" href="{@href}"> |
|
|
|
|
<xsl:value-of select="@title" /> |
|
|
|
|
<xsl:template name="diritem"> |
|
|
|
|
<xsl:param name="title" /> |
|
|
|
|
<xsl:param name="href" /> |
|
|
|
|
<a class="diritem" href="{$href}"> |
|
|
|
|
<xsl:value-of select="$title" /> |
|
|
|
|
</a> |
|
|
|
|
</xsl:template> |
|
|
|
|
|
|
|
|
|
<xsl:template match="diritem"> |
|
|
|
|
<xsl:call-template name="diritem"> |
|
|
|
|
<xsl:with-param name="title" select="@title" /> |
|
|
|
|
<xsl:with-param name="href" select="@href" /> |
|
|
|
|
</xsl:call-template> |
|
|
|
|
</xsl:template> |
|
|
|
|
|
|
|
|
|
</xsl:stylesheet> |
|
|
|
|