summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--www/style.xsl18
1 files changed, 18 insertions, 0 deletions
diff --git a/www/style.xsl b/www/style.xsl
new file mode 100644
index 0000000..ddc387c
--- /dev/null
+++ b/www/style.xsl
@@ -0,0 +1,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>