tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

xml2html.xsl (550B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <xsl:stylesheet version="1.0"
      3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      4 
      5 <xsl:template match="/">
      6  <html>
      7  <body>
      8  <h2 style="margin-top:0">My CD Collection</h2>
      9  <table border="1">
     10    <tr bgcolor="#9acd32">
     11      <th>Title</th>
     12      <th>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 
     25 </xsl:stylesheet>