diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-08-23 19:20:27 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-08-23 19:20:27 +0200 |
commit | 13e34586783671f8797b6bb90e506a4b1015c293 (patch) | |
tree | 27b495cd26927e2bf7149c674a947d4be9ee78ec /xsl | |
parent | 901045c327b8066a6d533639d3a5855a6ac42558 (diff) | |
download | mutti-web-13e34586783671f8797b6bb90e506a4b1015c293.tar.gz mutti-web-13e34586783671f8797b6bb90e506a4b1015c293.tar.bz2 mutti-web-13e34586783671f8797b6bb90e506a4b1015c293.zip |
layout.xsl: Fix indentation
Diffstat (limited to 'xsl')
-rw-r--r-- | xsl/layout.xsl | 84 |
1 files changed, 42 insertions, 42 deletions
diff --git a/xsl/layout.xsl b/xsl/layout.xsl index f06b1d1..d71dfca 100644 --- a/xsl/layout.xsl +++ b/xsl/layout.xsl @@ -7,48 +7,48 @@ <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> + <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> - <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> - </html> + <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> + </html> </xsl:template> </xsl:stylesheet> |