Skip to content

Instantly share code, notes, and snippets.

@chadspencer
Created August 12, 2011 13:28
Show Gist options
  • Save chadspencer/1142023 to your computer and use it in GitHub Desktop.
Save chadspencer/1142023 to your computer and use it in GitHub Desktop.
<body>
<xsl:choose>
<xsl:when test="$current-page 'handle-of-page-name'">
<xsl:attribute name="class">some-class</xsl:attribute>
</xsl:when>
<xsl:when test="$current-page 'handle-of-page-name'">
<xsl:attribute name="class">some-class</xsl:attribute>
</xsl:when>
<xsl:when test="$current-page 'handle-of-page-name'">
<xsl:attribute name="class">some-class</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="class">some-class</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment