Skip to content

Instantly share code, notes, and snippets.

@VeroLom
Last active October 3, 2017 23:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VeroLom/7bf4427b24aa3e36f8798adabc7869c8 to your computer and use it in GitHub Desktop.
Save VeroLom/7bf4427b24aa3e36f8798adabc7869c8 to your computer and use it in GitHub Desktop.
XSLT menu
<?xml version="1.0"?>
<xsl:stylesheet version="1.0">
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="udata[@module = 'content' and @method = 'menu']">
<ul>
<xsl:apply-templates select="items/item" />
</ul>
</xsl:template>
<xsl:template match="item">
<li>
<a href="{@link}">
<xsl:value-of select="@name" />
</a>
</li>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment