<?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>
  <head>
  <title>Enemy Down</title> 
  <link rel="stylesheet" type="text/css" href="/style.css" /> 
  </head>
  <body bgcolor="#006699">
    <p class="h2">Enemy Down RSS Feed</p>
    <xsl:for-each select="rss/channel/item">
    <table border="0" cellspacing="1" cellpadding="6" width="100%">
    <tr bgcolor="#00274D">
      <td><b><a><xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute><xsl:value-of select="title"/></a></b> - <xsl:value-of select="pubDate"/></td>
    </tr>
    <tr bgcolor="#1E477E">
      <td><xsl:value-of select="description"/></td>
    </tr>
  </table>
  <br />
    </xsl:for-each>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>

