<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:sitemap="http://www.google.com/schemas/sitemap/0.84">
<xsl:output method='html' version='1.0' encoding='UTF-8' indent='yes'/>


<xsl:template match="/sitemap:urlset">

  <html>
  <head>
	<title>Sitemap for www.elifulkerson.com</title>
	<link rel="stylesheet" type="text/css" href="style.css" />
</head>
  <body>
  <h1>Sitemap:</h1>
  <p>This page is an XML Document that lists the pages on this website in syntax that conforms to Google's Sitemap protocol.</p>
    <table border="0">
      <tr bgcolor="white">
        <th align="left">Page</th>
        <th align="left">Last Modified</th>
      </tr>
      <xsl:for-each select="sitemap:url">
      <tr>
        <td>
	<a>
	<xsl:attribute name="href">
	<xsl:value-of select="sitemap:loc"/>
	</xsl:attribute>

	<xsl:value-of select="sitemap:loc"/>
	</a>
	
	</td>
        <td><xsl:value-of select="sitemap:lastmod"/></td>
      </tr>
      </xsl:for-each>
    </table>
    <hr/>
  <p>
  <a href="http://www.elifulkerson.com">Home</a>
  </p>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>