<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:template match="/Events">
		<xsl:for-each select="Event">
			<xsl:sort select="@EventDateTime" />
			<a>
				<xsl:attribute name="href">
					<xsl:value-of select="@Page" />
				</xsl:attribute>
				<xsl:value-of select="concat(@Name,' Tickets')" />
			</a>
			<br />
			<xsl:value-of select="Venue/@Name" /><br />
			<xsl:value-of select="@EventDateTime" /><br /><br />
		</xsl:for-each>
	</xsl:template>
</xsl:stylesheet> 

