All pastes #2064026 Raw Edit

Something

public text v1 · immutable
#2064026 ·published 2011-05-19 04:39 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[string-length(@Title)>0]">
  <li>
    <xsl:value-of select="@Title"/>
  </li>
</xsl:template>
</xsl:stylesheet>