<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	
	<xsl:output indent="yes" method="xml" omit-xml-declaration="yes" />
	<xsl:template match="/">
		<rss version="2.0">
			<channel>
				<title>Your Title would go here</title>
				<link>http://www.some_website.com</link>
				<description>Your Description would go here.</description>
				
				<xsl:apply-templates select="News/Article" />
			</channel>
		</rss>
	</xsl:template>
	
	<xsl:template match="Article">
		<item>
			<title><xsl:value-of select="Title" /></title>
			<link><xsl:value-of select="URL" /></link>
			<description><xsl:value-of select="Introduction" /></description>
			<pubDate>
				<xsl:value-of select="substring(@Date_Created, 9, 2)" />
				<xsl:text> </xsl:text>
				<xsl:value-of select="substring(substring-after('01Jan02Feb03Mar04Apr05May06Jun07Jul08Aug09Sep10Oct11Nov12Dec', (substring(@Date_Created, 6, 2))), 1, 3)" />
				<xsl:text> </xsl:text>
				<xsl:value-of select="substring(@Date_Created, 1, 4)" />
				<xsl:text> </xsl:text>
				<xsl:value-of select="substring-after(@Date_Created, 'T')" />
				<xsl:text> PST</xsl:text>
			</pubDate>
		</item>
	</xsl:template>
	
</xsl:stylesheet>
