<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
    <h2>Tinderbox File</h2>
    <xsl:for-each select="//item">
        <div style="margin-left:5px;padding-left:5px;background:#ddddd; border:1px solid #888888;font-size:12px;">
	<xsl:for-each select="attribute[@name='Name']">
	<span style="font-size:14px;font-weight:bold;"><xsl:value-of select="current()"/></span> - 
	</xsl:for-each>
	<xsl:for-each select="attribute[@name='publicationDate']">
	<span style="font-size:12px; color:blue;"><xsl:value-of select="current()"/></span> <br/>
	</xsl:for-each>
	<xsl:value-of select="text"/>
      </div>
    </xsl:for-each>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>

