All pastes #2064022 Raw Edit

Something

public text v1 · immutable
#2064022 ·published 2011-05-19 04:21 UTC
rendered paste body
<?xml version="1.0"?>
<!-- Title.xsl -->
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="html"/>

<xsl:template match="posts">
  <html><body>
    <h1>Posts</h1>
    <xsl:apply-templates/>
  </body></html>
</xsl:template>

<xsl:template match="row">
     <xsl:if test="./@Title">
       <li><xsl:value-of select="./@Title"/></li>
     </xsl:if>
</xsl:template>
</xsl:stylesheet>