<xsl:template match="/">
<html>
<head>
<meta http-equiv="content-type" content="text/html;
charset=ISO-8859-1"></meta>
<title>Photo Album </title>
</head>
<body>
<children/><xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="title">
<h1><xsl:apply-templates/></h1>
</xsl:template>
<xsl:template match="subtitle">
<h2><xsl:apply-templates/></h2>
</xsl:template>
<xsl:template match="photo">
<p><a href="PhotosBig/{name}"><img src="PhotosSmall/{name}"/></a></p>
<p><b><xsl:apply-templates select="description"/></b></p>
</xsl:template>
</xsl:stylesheet>