<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE xsl:stylesheet  [
	<!ENTITY nbsp   "&#160;">
	<!ENTITY copy   "&#169;">
	<!ENTITY reg    "&#174;">
	<!ENTITY trade  "&#8482;">
	<!ENTITY mdash  "&#8212;">
	<!ENTITY ldquo  "&#8220;">
	<!ENTITY rdquo  "&#8221;"> 
	<!ENTITY pound  "&#163;">
	<!ENTITY yen    "&#165;">
	<!ENTITY euro   "&#8364;">
]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="iso-8859-1" indent="yes" omit-xml-declaration="no"/>
<xsl:param name="pageID" select="home"/>
<xsl:param name="lang" select="eng"/>
<xsl:template match="/">
<rss version="2.0">
<channel>	<title>Café kathmandu News</title>	<link>http://www.cafekathmandu.com</link>	<description>Café kathmandu News</description>	<copyright>Café kathmandu</copyright>	<language>EN-US</language>
	<xsl:apply-templates select="//dati//new"/>
</channel>
</rss>
</xsl:template>
<xsl:template match="new">
			<item>				<title><xsl:value-of select="titolo/eng"/></title>				<link>http://www.cafekathmandu.com/new/default.php?pageID=read_new&amp;newID=<xsl:value-of select="@id"/></link>				<description><xsl:value-of select="testo"/></description>				<pubDate><xsl:value-of select="data"/></pubDate>			</item>
</xsl:template>
</xsl:stylesheet>
