<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">

<html>
<head>
	<title>The Inhabited Worlds of the Known Galaxies</title>
</head>

<body>

	<h1>Listing of the Galaxies</h1>
	
	<xsl:for-each select="universe/galaxy">
	
	<h2><xsl:value-of select="@name">
		</xsl:value-of>
	</h2>


		<ol>
		<xsl:for-each select="inhabited-planet">
		
		<li>A planet named: <strong><xsl:value-of select="@name"></xsl:value-of></strong>
		
			<xsl:for-each select="atmosphere/gas[@status='diminishing']">
				<br><small><em> (
					Warning: its <xsl:value-of select="@name"></xsl:value-of>
					gas is diminishing!
				) </em></small></br>

			</xsl:for-each>
		
		</li>
		<p></p>
		</xsl:for-each>
		
		</ol>


	</xsl:for-each>

</body>
</html>

</xsl:template>
</xsl:stylesheet>

