<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:unic="http://www.uni-c.dk/namespace/"
exclude-result-prefixes="dc content unic">
	<xsl:output method="html" />
	   
	<xsl:template match="/">  
	    <xsl:apply-templates />
	</xsl:template>
  <xsl:template match="item">
		<div class="box norm">
			<div class="box-i">
				<h4 class="box-first-h">
					<a href="{link}">
						<xsl:value-of select="title" disable-output-escaping="yes"/>
					</a>
				</h4>
				<xsl:value-of select="content:encoded" disable-output-escaping="yes"/>
			</div>
		</div>
	</xsl:template>
</xsl:stylesheet>

