diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-12-27 20:24:25 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-12-27 20:24:38 +0100 |
commit | d3071f0476bca4673908130aefaad68ab9a40207 (patch) | |
tree | 05da0041d981c1f6f00b125eeda2b5f4a3b79f51 /xsl | |
parent | 38a40286b6a0a5a5527b4257ba28da4bca5b2516 (diff) | |
download | mutti-web-d3071f0476bca4673908130aefaad68ab9a40207.tar.gz mutti-web-d3071f0476bca4673908130aefaad68ab9a40207.tar.bz2 mutti-web-d3071f0476bca4673908130aefaad68ab9a40207.zip |
Overall Update
To much to find a suiting description :\
Diffstat (limited to 'xsl')
-rw-r--r-- | xsl/layout.xsl | 117 |
1 files changed, 77 insertions, 40 deletions
diff --git a/xsl/layout.xsl b/xsl/layout.xsl index aebf3c5..b6b6cd9 100644 --- a/xsl/layout.xsl +++ b/xsl/layout.xsl @@ -8,47 +8,84 @@ <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> + <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"> + <img src="checkmark.png" alt="Checkmark"/> + <!-- + <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>Beratung & Controlling</h1> + <h2>Angelika Franzke</h2> </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[© 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> + <div id="navi"> + <ul> + <xsl:call-template name="navigation" /> + </ul> + <a href="#page" accesskey="S" style="display: none" /> + </div> + <div id="container" style="background:white"> + <hr class="delimit" style="margin:0;padding:0"/> + <div id="page" style="border-left: 200px solid white;margin:0;padding:0"> + <div style=" + width: 180px; + float:left; + font-size: 11px; + position: relative; + padding:10px; + margin-left: -200px; + margin-right:1px;"> + <strong>Es berät Sie gern:<br/>Angelika Franzke</strong><br/> + Tel: 038461/52053<br/> + Fax: 038461/599811<br/> + Mobil: 0172/9302774<br/> + E-Mail: <a href="mailto:franzke.buetzow@t-online.de">franzke.buetzow@t-online.de</a> + <hr style="margin-top: 3px"/> + <br/> + <div style=" + width: 130px; + padding: 5px; + margin-top: 5px; + background: #983D3A; + border: 2px #C02020 solid; + color: #FFFFFF;"> + <a style="text-decoration:none; color:white; display: block" href="contact{$suffix}"> + <span style="font-weight: bold">Kostenlose Analyse Ihrer Gründungsidee.</span> + <br/> + Die Kostenlose Analyse schafft Klarheit darüber, welches Umsatzpotential Ihre Idee bietet. + </a> + </div> + </div> + <div style="position:relative; margin:0px"> + <xsl:apply-templates mode="html" /> + </div> + <br style="clear:both"/> + </div> + <hr class="delimit" /> + </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> |