summaryrefslogtreecommitdiff
path: root/xsl/layout.xsl
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2011-08-23 16:02:34 +0200
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2011-08-23 16:06:05 +0200
commitf9c9aef63c24188c87dbe4a351b2834e2fc0d282 (patch)
tree2557ec019bb4f2833b86481ccb36ede366946086 /xsl/layout.xsl
downloadmutti-web-f9c9aef63c24188c87dbe4a351b2834e2fc0d282.tar.gz
mutti-web-f9c9aef63c24188c87dbe4a351b2834e2fc0d282.tar.bz2
mutti-web-f9c9aef63c24188c87dbe4a351b2834e2fc0d282.zip
Add initial layout + pages
Diffstat (limited to 'xsl/layout.xsl')
-rw-r--r--xsl/layout.xsl51
1 files changed, 51 insertions, 0 deletions
diff --git a/xsl/layout.xsl b/xsl/layout.xsl
new file mode 100644
index 0000000..0edb720
--- /dev/null
+++ b/xsl/layout.xsl
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version="1.0"
+ xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:s="https://beratung-franzke.de/web-tpl">
+
+ <xsl:include href="common.xsl" />
+
+ <xsl:template match="s:html">
+ <html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>
+ <xsl:text disable-output-escaping="yes"><![CDATA[Beratung &amp; Controlling - Angelika Franzke - ]]></xsl:text>
+ <xsl:value-of select="$title"/>
+ </title>
+ <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
+ <link rel="stylesheet" type="text/css" href="style/style.css" />
+ <script type="text/javascript" src="svg.js"/>
+ </head>
+ <body>
+ <div id="header">
+ <div id="logo">
+ <xsl:call-template name="svg">
+ <xsl:with-param name="svg-file" select="'checkmark.svg'" />
+ <xsl:with-param name="svg-alt" select="'Checkmark'" />
+ </xsl:call-template>
+ </div>
+ <h1><xsl:text disable-output-escaping="yes"><![CDATA[Beratung &amp; Controlling]]></xsl:text></h1>
+ <h2>Angelika Franzke</h2>
+ </div>
+ <div id="navi">
+ <ul>
+ <xsl:call-template name="navigation" />
+ </ul>
+ </div>
+ <div id="page">
+ <hr class="delimit" />
+ <xsl:apply-templates mode="html" />
+ <hr class="delimit" />
+ </div>
+ <div id="footer">
+ <p>
+ <xsl:text disable-output-escaping="yes"><![CDATA[&copy;]]></xsl:text>2007 All Rights Reserved.
+ Designed by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>.
+ <a href="impress{$suffix}">Impressum</a>
+ </p>
+ </div>
+ </body>
+ </html>
+ </xsl:template>
+</xsl:stylesheet>