<?xml version="1.0" encoding="iso-8859-1"?><!-- DWXMLSource="main_feed.xml" -->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
  <head>
    <title><xsl:value-of select="rss/channel/title"/> News (RSS)</title>
    <style type="text/css">
    @import url(rss.css);
    </style>
  </head>
  
  <body>
  <div id="website">
  <div id="top">
  	<div id="banner">
	
	<a href="index.htm"> <img src="images/CPL_Web_Banner.jpg" height="112" width="700" alt="Chicopee Public Library Banner, 413-594-1800" align="left" border="0" /></a>
	
  	</div>
  </div>
    <div id="explanation">
      <h1>Chicopee Public Library News</h1>
	  	
      <p>You are viewing an <acronym title="Really Simple Syndication">RSS</acronym> feed.  An RSS feed is a file
      allowing users a way to read updates to a website either through a third party RSS aggregator or other form of RSS
      syndication service.  You can find out more about the RSS file format at the
      <a href="http://en.wikipedia.org/wiki/RSS_(file_format)">Wikipedia RSS entry</a>.</p>
	  <p align="right"><a type="application/rss+xml" href="http://www.chicopeepubliclibrary.org/main_feed.xml">Subscribe to CPL News <img src="images/feed_icon.gif" alt="rss logo" width="16" height="16" border="0" /></a> </p>
    </div>
	
    <div id="content">
      <xsl:for-each select="rss/channel/item">
      <div class="article">
        <h2><a href="{link}" rel="bookmark"><xsl:value-of select="title"/></a></h2>
        <xsl:value-of select="description"/>
      </div>
      </xsl:for-each>
    </div>
	<p align="right"><a type="application/rss+xml" href="http://www.chicopeepubliclibrary.org/main_feed.xml">Subscribe to CPL News <img src="images/feed_icon.gif" alt="rss logo" width="16" height="16" border="0" /></a> </p>
	</div>
  </body>
</html>
</xsl:template>
</xsl:stylesheet>