aboutsummaryrefslogtreecommitdiffstats
path: root/documentation/xsl/body.xsl
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-06-02 05:28:06 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-06-02 05:28:06 +0000
commit21d19e4dbe9a3a1f724a1963d13af21004a06e55 (patch)
tree8333b427632f129e005ca6f7d4796c18ffddccb6 /documentation/xsl/body.xsl
parent491dc3d0e3ff77223118aac4712bf9ed2dac63a8 (diff)
downloadlcd4linux-21d19e4dbe9a3a1f724a1963d13af21004a06e55.tar.gz
[lcd4linux @ 2004-06-02 05:27:59 by reinelt]
added documentation tree git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@458 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'documentation/xsl/body.xsl')
-rw-r--r--documentation/xsl/body.xsl20
1 files changed, 20 insertions, 0 deletions
diff --git a/documentation/xsl/body.xsl b/documentation/xsl/body.xsl
new file mode 100644
index 0000000..8b13ebd
--- /dev/null
+++ b/documentation/xsl/body.xsl
@@ -0,0 +1,20 @@
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+<!--
+ XSL stylesheet for processing documentation for the lcd4linux project
+ Copyright 2004 Xavier Vello <xavier66@free.fr>
+ Copyright 2004 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
+-->
+
+<!--The content of the page-->
+
+<xsl:template match="body" node="doc">
+ <xsl:element name="body">
+ <!--Here will be added html code for the layout-->
+ <xsl:apply-templates select="/doc/head/links"/>
+ <xsl:element name="h1">
+ <xsl:value-of select="/doc/head/title"/>
+ </xsl:element>
+ <xsl:apply-templates/>
+ </xsl:element>
+</xsl:template>
+</xsl:stylesheet>