summaryrefslogtreecommitdiffstats
path: root/www/style.xsl
blob: ddc387c55679c07c6cdfa71fa7ff6b972a5e9d01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="iso-8859-15"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">

  <xsl:output method="xml" version="1.0" encoding="iso-8859-15" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" indent="yes"/>

  <xsl:template match="/">
     <html>
       <body>
         <p>cool</p>
         <xsl:for-each select="html">
           <p>Hallo</p>
         </xsl:for-each>

       </body>
     </html>
  </xsl:template>

</xsl:stylesheet>