All pastes #2064006 Raw Edit

Stuff

public text v1 · immutable
#2064006 ·published 2011-05-19 03:05 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">
    <li>
       <a href="{./@row}"><xsl:value-of select="./@Title"/></a>
    </li>
</xsl:template>

</xsl:stylesheet>