<?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="source">
	<html>

		<head>
  			<title>DHSSPS Swine Flu Update</title> 
  			<link rel="stylesheet" href="rss.css" type="text/css" media="screen, projection" /> 
  			<style type="text/css">body, table.simple { font-size: 90%; }</style> 
  		</head>
 
 		<body>
			<xsl:apply-templates /> 
  		</body>
  	</html>
</xsl:template>


<xsl:template match="channel">

<div id="rss-content">
<img src="dhssps-banner-home-left.gif" width="440" height="91" alt="Department of Health Social Services and Public Safety" />

<h1>DHSSPS RSS News Feeds</h1>

<p>This is an RSS (2.0) feed from the Department of Health Social Services and Public Safety (DHSSPS) website. 
This RSS (Really Simple Syndication) feed enables you to stay up-to-date with the latest news articles relating to Swine 
Flu featured on the DHSSPS website.</p>

<p>To subscribe to this RSS feed you will need a News Reader which is a piece of software that checks RSS feeds and 
allows you to access news articles in the feed. News Readers are available in different forms - some are built into 
Internet Browsers and others are standalone dedicated software applications.</p>


<h2>Subscribe to this feed</h2>

<p>You can subscribe to this RSS feed in a number of ways, including the following:
<ul>
<li>Drag the orange RSS button into your News Reader </li>
<li>Drag the URL of the RSS feed into your News Reader </li>
<li>Cut and paste the URL of the RSS feed into your News Reader </li>
</ul>
</p>

<p><strong>RSS Feed For:  
<a href="rss-swineflu.xml"><img src="rss-feed.gif" width="15" height="15" alt="RSS Feed" />DHSSPS Swine Flu News</a>
</strong></p>

<h3>Latest News Content</h3>

		<table class="simple" summary="RSS Feeds Table">
			<tr>
  				<th scope="col" class="title">Title</th> 
  				<th scope="col" class="date">Date</th> 
  			</tr>
	
			<xsl:for-each select="item">
			<tr>
				<td class="title">
				<a href="{link}">
				<xsl:value-of select="title" />
				</a>
  				<br /> 
  				<xsl:value-of select="description" />
  				</td>
	
				<td class="date">
  				<xsl:value-of select="pubDate" /> 
  				</td>
			</tr>
			</xsl:for-each>
		</table>
</div>
</xsl:template>

</xsl:stylesheet>




