- Setup: don't need! just open the xml in your browser! :D
- Preview: http://bernardodiasc.github.io/xslt/
Make sure to check the source code of the preview page - it's XML
In this demonstration only have the navigation
component (/templates/navigation/index.xsl). There is 2 templates for the same matched data, one called simple
and the other complex
. The model-name
is used here to represent a data source.
The mode simple
copy the matched xml nodes as html. This is ok since XHTML is XML.
- Match:
data/module[@name='navigation']
- Mode: simple
- Usage:
<xsl:apply-templates select="/data/module[@name='navigation' and @model='model-name']" mode="simple"/>`
- Sample XML:
<!-- Example of pure HTML data -->
<module name="navigation" model="model-name">
<nav>
<h2>Navigation</h2>
<ul>
<li><a href="#about-us">About us</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contacts">Contacts</a></li>
<li><a href="#partners">Partners</a></li>
</ul>
</nav>
</module>
- XSLT Template:
<xsl:template match="data/module[@name='navigation']" mode="simple">
<xsl:copy-of select="current()/*"/>
</xsl:template>
The mode complex
iterate the matched xml nodes and build the markup with an alternative markup structure.
In this case the markup resulted is intentionaly the same of simple mode markup. The structured data is parsed to build the html.
- Match:
data/module[@name='navigation']
- Mode: complex
- Usage:
<xsl:apply-templates select="/data/module[@name='navigation' and @model='model-name']" mode="complex"/>
- Sample XML:
<!-- Example of structured content -->
<module name="navigation" model="model-name">
<heading>Navigation</heading>
<list>
<item data-title="Know more about us" data-url="#about-us">About us</item>
<item data-title="The team" data-url="#team">Team</item>
<item data-title="Projects we worked" data-url="#projects">Projects</item>
<item data-title="Contact us" data-url="#contacts">Contacts</item>
<item data-title="Meet our partners" data-url="#partners">Partners</item>
</list>
</module>
- XSLT Template:
<xsl:template match="data/module[@name='navigation']" mode="complex">
<xsl:variable name="model" select="@model"/>
<xsl:for-each select="current()">
<nav class="navigation {$model}">
<h2><xsl:value-of select="heading"/></h2>
<ul>
<xsl:for-each select="list/item">
<li><a href="{@data-url}"><xsl:value-of select="current()"/></a> - <xsl:value-of select="@data-title"/></li>
</xsl:for-each>
</ul>
</nav>
</xsl:for-each>
</xsl:template>