blob: c2d02cf9b855d775ce5a9aa3e8a5a4b74aba3c05 [file] [log] [blame]
<?xml version="1.0"?>
<!-- CVS: $Id: list2html.xsl,v 1.1 2003/06/27 20:10:41 stefano Exp $ -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title>Complete List</title>
</head>
<body bgcolor="white" alink="red" link="blue" vlink="blue">
<h3>Complete List</h3>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="list">
<ul>
<xsl:apply-templates/>
</ul>
</xsl:template>
<xsl:template match="item">
<li><xsl:apply-templates/></li>
</xsl:template>
</xsl:stylesheet>