summaryrefslogtreecommitdiff
path: root/xsl/layout.xsl
blob: e8183be7ba4f3de0ea1a6ec7c11fdbfe95a38c4b (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?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>
      <head>
        <title>
          <xsl:text><![CDATA[Beratung & Controlling - Angelika Franzke - ]]></xsl:text>
          <xsl:value-of select="$title"/>
        </title>
        <!-- Hide compatibility mode button. -->
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta http-equiv="Content-Style-Type" content="text/css" />
        <meta name="viewport" content="width=device-width" />
        <link rel="stylesheet" type="text/css" href="style/style.css" />
      </head>
      <body>
        <div id="header">
          <img src="checkmark.png" alt="Checkmark"/>
          <h1>Beratung &amp; Controlling</h1>
          <h2>Angelika Franzke</h2>
        </div>
        <ul id="navi">
          <xsl:call-template name="navigation" />
          <li style="display: none"><a href="#page" accesskey="S" /></li>
        </ul>
        <div id="container">
          <div id="page">
            <div id="info">
              <strong>
                Es berät Sie gern:<br/>
                Angelika Franzke<br/>
              </strong>
              Tel: 038461/52053<br/>
              Fax: 038461/599811<br/>
              Mobil: 0172/9302774<br/>
              E-Mail: <a href="mailto:info@beratung-franzke.de">info@beratung-franzke.de</a>

	      <a href="https://www.facebook.com/pages/Beratung-Controlling-Angelika-Franzke/619857168040817">
		      <img src="img/facebook.jpg" style="width: 30px; height:30px;" alt="Facebook" />
	      </a>
	      <a href="https://plus.google.com/112211240794067152603">
		      <img src="img/gplus.png" style="width: 30px; height:30px;" alt="Google Plus" />
	      </a>

              <hr style="margin-top: 3px; margin-bottom: 10px;"/>

              <a href="contact{$suffix}" class="redbox">
                <strong>Kostenlose Analyse Ihrer Gründungsidee.</strong>
                <br/>
                Die Kostenlose Analyse schafft Klarheit darüber, welches Umsatzpotential Ihre Idee bietet.
              </a>
              <a style="margin-left: -5px"
                href="http://www.idz-zertifikat.de/voraussetzung-fachberater-existenzgruender">
                <img src="idz-siegel.jpg"
                  alt="Fachberaterin für Existenzgründer - Institut für Dienstleistungszertifizierung" />
              </a>
              <a href="http://www.mikrokredit.net/">
                <img src="kapitalinstitut.png" alt="Kapitalinstitut" />
              </a>
              <a style="display: block; text-align: center;"
                href="http://www.fuer-gruender.de/beratung/dienstleister-finden/firma/beratung-controlling/">
                <img src="fuer-gruender.de-siegel.png" alt="Für-Gründer.de" />
              </a>
              <a class="redbox" style="text-align: center; font-size: 14px"
                href="https://beraterboerse.kfw.de/index.php?ac=consultant_projects&amp;id=100021">
                Referenzen
              </a>
            </div>
            <xsl:apply-templates mode="html" />
          </div>
        </div>
        <div id="footer">
          <p>
            <xsl:text disable-output-escaping="yes"><![CDATA[© 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>