<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" />

<xsl:template match="/">

<p>(Get the <a href="http://www.rationalmind.net/essay/rss">RSS 2.0 feed</a>, <a href="/david/essaylist.xml">XML source</a>,
<a href="/david/essaylist.xsl">XSL</a>, or <a href="/david/XML_RSS.xsl">XML-RSS 2.0</a> XSLT.)</p>

<xsl:for-each select="EssayList/DocumentList">
	                <a>
				<xsl:attribute name="name"><xsl:value-of select="@Category"/></xsl:attribute>

			</a>
   <h3 align="center">
       Category: <xsl:value-of select="@Category"/>
   </h3>
                <ul class="essay">
                <xsl:for-each select="Document">
			<li class="essay"><xsl:value-of select="Date"/> :
			<a>
				<xsl:attribute name="href"><xsl:value-of select="Link"/></xsl:attribute>
				<xsl:value-of select="Title"/>
			</a>
                        </li>

		</xsl:for-each>
		</ul>

  </xsl:for-each>
               </xsl:template>
</xsl:stylesheet>


