Last active
January 26, 2017 16:50
-
-
Save jessgusclark/3ab56b1d35d14f1c431264593c4c0377 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- ========== START Snippet ========== --> | |
<xsl:template match="table[@class='ou-alex-example']"> | |
<div class="panel break-below"> | |
<xsl:choose> | |
<xsl:when test="$ou:action = 'pub'"> | |
<xsl:apply-templates select="tbody/tr/td/node()"/> | |
</xsl:when> | |
<xsl:otherwise> | |
<p><strong>This content will be removed on publish</strong></p> | |
<xsl:apply-templates select="tbody/tr/td/node()"/> | |
</xsl:otherwise> | |
</xsl:choose> | |
</div> | |
</xsl:template> | |
<!-- ========== END Snippet ========== --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment