summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-11-26 00:54:32 +0000
committerLennart Poettering <lennart@poettering.net>2005-11-26 00:54:32 +0000
commit059282217d7148b6f947e016eb76551b5acc0f4e (patch)
tree4d99ecfb633629c7f517e972e0a5c6ab35ba560d
parent273b6c7f503c4d1a8e6a1dcad36ea1f82a4d8edf (diff)
add xsl stylesheet
git-svn-id: file:///home/lennart/svn/public/sse/trunk@63 5fbabb74-0606-0410-a5e4-b5cc6a42724e
-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>