updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / hiawatha / cdcatalog.xslt
blobdb9cc35bc358daeb58623883fe15f156d984cdbb
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!-- Edited with XML Spy v4.2 -->
3 <xsl:stylesheet version="1.0"
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5 <xsl:template match="/">
6 <html>
7 <body>
8 <h2>My CD Collection</h2>
9 <table border="1">
10 <tr bgcolor="#9acd32">
11 <th align="left">Title</th>
12 <th align="left">Artist</th>
13 </tr>
14 <xsl:for-each select="catalog/cd">
15 <tr>
16 <td><xsl:value-of select="title"/></td>
17 <td><xsl:value-of select="artist"/></td>
18 </tr>
19 </xsl:for-each>
20 </table>
21 </body>
22 </html>
23 </xsl:template>
24 </xsl:stylesheet>