Skip to content

Instantly share code, notes, and snippets.

@ethangardner
Created June 28, 2011 23:52
Show Gist options
  • Save ethangardner/1052537 to your computer and use it in GitHub Desktop.
Save ethangardner/1052537 to your computer and use it in GitHub Desktop.
XSL Restaurant Menu 4
<xsl:template name="item" match="item">
<!-- This is a new template that is being called from the section template -->
<dt><xsl:value-of select="title" /></dt>
<dd><xsl:value-of select="description" /></dd>
<dd class="price">$<xsl:value-of select="price" /></dd>
<dd><xsl:value-of select="img" /></dd>
<dd class="options"><xsl:value-of select="options" /></dd>
<dd class="category"><xsl:value-of select="category" /></dd>
<!-- The above block of code renders out a definition list based on the
matched items.
-->
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment