summaryrefslogtreecommitdiff
path: root/xsl/layout.xsl
blob: aebf3c592d0ecb0e374b643fc04fa04a451dd07a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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><![CDATA[Beratung & 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><![CDATA[Beratung & Controlling]]></xsl:text></h1>
        <h2>Angelika Franzke</h2>
      </div>
      <div id="navi">
        <ul>
          <xsl:call-template name="navigation" />
        </ul>
       <a href="#page" accesskey="S" style="display: none" />
      </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; 2007 All Rights Reserved.]]></xsl:text>
          <xsl:text>Designed by </xsl:text>
          <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>
          <xsl:text>. </xsl:text>
          <a href="impress{$suffix}">Impressum</a>
        </p>
      </div>
    </body>
    </html>
  </xsl:template>
</xsl:stylesheet>