<?xml version="1.0" standalone="no"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template match="/">

<html>
	<head>
		<title>The Wedding of Jack and Jane</title>
	</head>

	<body>
		<h1>The Wedding of Jack and Jane</h1>

		<h2>Photographs</h2>

		<table align="center" border="2">
			<tr>
				<th>Phase</th>
				<th>Description</th>
				<th>Subject</th>
			</tr>

			<xsl:for-each order-by="+ @phase" select="wedding/photo">
				<tr>
					<td><xsl:value-of select="@phase"/></td>
					<td><xsl:value-of select="description"/></td>
					<td>
                                <xsl:value-of select="person"/> 
					    <xsl:value-of select="group"/>
					    <xsl:value-of select="object"/>
					</td>
				</tr>
			</xsl:for-each>
		</table>
	</body>
</html>

</xsl:template>
</xsl:stylesheet>
