<?xml version="1.0" encoding="euc-jp" standalone="yes" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

	<xsl:template match="/">
		<html>
			<head>
			<meta http-equiv="Content-Type" content="text/html; charset=euc-jp" />
			<title>XSLT for-each構文サンプル</title>
			<meta name="keywords" content="XML,XSLT,スタイルシート,for-each" />
			</head>
		
			<body>
			<xsl:for-each select="affiliate/shop">
				<div class="xmlLineBox">
				<h4><xsl:value-of select="name" /></h4>
				<p><xsl:value-of select="comment" /></p>
				</div>
			</xsl:for-each>
			</body>
		</html>
	</xsl:template>

</xsl:stylesheet>
