<?xml version='1.0' encoding='UTF-8'?><!-- DWXMLSource="comic.xml" -->
<xsl:stylesheet
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:msdndomain="http://msdn.microsoft.com/aboutmsdn/rss/domains"
	version="1.0">

<xsl:template match='/rss'>
  <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  	  <title><xsl:value-of select='channel/title'/> RSS Feed - <xsl:value-of select='channel/description'/></title>
     	<style type="text/css">
        body { margin:0px 0px 0px 0px; padding:0px; font-family:"Times New Roman, Times, serif"; font-size: 12px; text-align:center; /* Hack for IE5/Win */ }
	
        #Content { width:340px; margin:0px 0px 0px 0px; text-align:center; }
        h1 { font-size: 14px; font-weight: bold; }
	  		h2 { font-size: 12px; } 
        hr { width: 234px; }
		  </style>

  	</head>

	<body bgcolor="#45819B" text="#FFFFFF" alink="#FFFFFF" vlink="#FFFFFF" link="#FFFFFF">
	  <div align="center">
      		<img src="http://fanboys-online.com/images/header.jpg" /><br />
			<h1>F@NB0Y$ RSS Feed</h1>
			<p><a href="main.xml">F@NB0Y$ - Main Feed</a> :: <a href="comic.xml">F@NB0Y$ - Comic Feed</a> :: <a href="blog.xml">F@NB0Y$ - Blog Feed</a> :: <a href="mini.xml">F@NB0Y$ - Mini Feed</a></p>

      <div style="width: 340px; text-align: left;" align="center">
      <ul>
			<xsl:apply-templates select='channel/item' />
      </ul><br /></div>
      <hr />
			</div>
		</body>
	</html>

</xsl:template>

<xsl:template match='item'>
			<li><h2><a href='{link}'><xsl:value-of select='title'/></a></h2>
		<p>
			<xsl:value-of select='description' disable-output-escaping='yes' />
			<br /><br />
			<strong>Published Date: </strong><xsl:value-of select='pubDate' /><br/>
    	<strong>Author: </strong><xsl:value-of select='author' />

    </p></li>
</xsl:template>

</xsl:stylesheet>