<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
	<xsl:output method="html" indent="yes"/>
	<!-- RSSv2.0 Simple XSL Example by Phil 'iwonder' Guerra -->
	<!-- Edited by Lee Sykes DNN Creative Magazine http://www.dnncreative.com -->
	<!-- Edited again by John Johnston so little of the original is left -->
	<xsl:template match="game">
		<xsl:variable name="item_link" select="url"/>
		<xsl:variable name="item_title" select="description"/>
		<xsl:variable name="thumb_nail" select="thumbnail"/>
		<div style="background:#E6E6E6;padding:4px;margin:10px;-moz-border-radius: 5px; -webkit-border-radius: 5px;width:240px;float:left;height:240px;overflow:hidden;text-align:center ">
			<h4>
				<a href="{$item_link}" target="new">
					<xsl:value-of select="name" disable-output-escaping="yes"/>
				</a>
			</h4>
			<a href="{$item_link}" target="new">
				<img src="{$thumb_nail}" style="margin: auto"/>
			</a>
			<p style="font-size:13px;text-align:left">
				<xsl:value-of select="description" disable-output-escaping="yes"/>
			</p>
		</div>
	</xsl:template>
</xsl:stylesheet>