<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xsl:stylesheet xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:dc="http://purl.org/dc/elements/1.1/"
                xmlns:rss="http://purl.org/rss/1.0/"
                xmlns="http://www.w3.org/1999/xhtml"
                version="1.0">
    <xsl:output method="html"/>
    <xsl:template match="/rdf:RDF">
		<html>
		<head>
			<title>
				<xsl:value-of select="rss:channel/rss:title"/>
			</title>
			<link rel="stylesheet" type="text/css" href="LookRSS.css"/>
			<link rel="alternate" title="RSS 1.0" type="application/rss+xml"/>
		</head>
		<body>
			<div id="rssHeader">
				<div id="headerNumItems">
					<xsl:value-of select="count(rss:item)"/>
                    <xsl:text> </xsl:text>
					<span>Total</span></div>
				<div id="headerTitle"><xsl:value-of select="rss:channel/rss:title"/></div>
			</div>
			<table class="listing" cellpadding="2" cellspacing="2" width="100%">
			<div id="rssItems">
			<xsl:for-each select="rss:item">
				<tr class="odd">
				 <td class="rssItem">
					<a href="{rss:link}" class="itemLink" target="_blank">
						<span class="itemTitle"><xsl:value-of select="normalize-space(rss:title)"/></span>
					</a></td>
					<td class="itemDescription">
		            	<xsl:copy-of select="rss:description"/>
		                <a href="{rss:link}" class="itemReadMore">
		                   <span> mehr ..</span>...</a>
					</td>
				</tr>
			</xsl:for-each>
			</div>
			</table>
		</body>
		</html>
	</xsl:template>
</xsl:stylesheet>

