diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2016-07-06 06:54:53 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2016-07-06 06:58:40 +0200 |
commit | 1b5b6dff086c3e786783618ade82d7592d223bef (patch) | |
tree | f1321a0d7e4de634a5dd73ee92b4d22d7371e1a6 /xsl | |
parent | fead290bef119823a748dd28b0a49fddaad8aeb3 (diff) | |
download | mutti-web-1b5b6dff086c3e786783618ade82d7592d223bef.tar.gz mutti-web-1b5b6dff086c3e786783618ade82d7592d223bef.tar.bz2 mutti-web-1b5b6dff086c3e786783618ade82d7592d223bef.zip |
Reduce ugly <div class=outer> markup
..and replace that "container" aproach by a padding-left/padding-right
calculated from viewportwidth aproach.
This optimization saves around 27bytes
Diffstat (limited to 'xsl')
-rw-r--r-- | xsl/layout.xsl | 60 |
1 files changed, 29 insertions, 31 deletions
diff --git a/xsl/layout.xsl b/xsl/layout.xsl index 0e4b3fd..61eeaa5 100644 --- a/xsl/layout.xsl +++ b/xsl/layout.xsl @@ -30,38 +30,36 @@ <xsl:call-template name="navigation" /> </ul> </nav> - <div class="outer"> - <main> - <article> - <xsl:apply-templates mode="html" /> - <p class="small"> - <xsl:text>* Meine Dienstleistung umfasst das Buchen der lfd. Geschäftsvorfälle und die lfd. Lohnabrechnung</xsl:text> - </p> - </article> - <aside> - <strong>Angelika Franzke</strong><br/> - <xsl:text>Tel: 038461/52053</xsl:text><br/> - <xsl:text>Fax: 038461/599811</xsl:text><br/> - <xsl:text>Mobil: 0172/9302774</xsl:text><br/> - <xsl:text>E-Mail: </xsl:text><a href="mailto:info@angelika-franzke.de">info@angelika-franzke.de</a> - <br/> - <br/> - <a href="https://plus.google.com/112211240794067152603"> - <img src="img/gplus32{$versioned_png}" width="32" height="32" class="social-icon" alt="Google Plus" /> - </a> + <main> + <article> + <xsl:apply-templates mode="html" /> + <p class="small"> + <xsl:text>* Meine Dienstleistung umfasst das Buchen der lfd. Geschäftsvorfälle und die lfd. Lohnabrechnung</xsl:text> + </p> + </article> + <aside> + <strong>Angelika Franzke</strong><br/> + <xsl:text>Tel: 038461/52053</xsl:text><br/> + <xsl:text>Fax: 038461/599811</xsl:text><br/> + <xsl:text>Mobil: 0172/9302774</xsl:text><br/> + <xsl:text>E-Mail: </xsl:text><a href="mailto:info@angelika-franzke.de">info@angelika-franzke.de</a> + <br/> + <br/> + <a href="https://plus.google.com/112211240794067152603"> + <img src="img/gplus32{$versioned_png}" width="32" height="32" class="social-icon" alt="Google Plus" /> + </a> + <br/> + <a href="contact{$suffix}" class="redbox"> + <strong>Kostenlose Analyse Ihrer Gründungsidee.</strong> <br/> - <a href="contact{$suffix}" class="redbox"> - <strong>Kostenlose Analyse Ihrer Gründungsidee.</strong> - <br/> - <xsl:text>Die Kostenlose Analyse schafft Klarheit darüber, welches Umsatzpotential Ihre Idee bietet.</xsl:text> - </a> - <a class="redbox" style="text-align:center" - href="https://beraterboerse.kfw.de/index.php?ac=consultant_projects&id=100021"> - <xsl:text>Referenzen</xsl:text> - </a> - </aside> - </main> - </div> + <xsl:text>Die Kostenlose Analyse schafft Klarheit darüber, welches Umsatzpotential Ihre Idee bietet.</xsl:text> + </a> + <a class="redbox" style="text-align:center" + href="https://beraterboerse.kfw.de/index.php?ac=consultant_projects&id=100021"> + <xsl:text>Referenzen</xsl:text> + </a> + </aside> + </main> <div class="logos"> <a href="http://www.idz-zertifikat.de/voraussetzung-fachberater-existenzgruender" target="_blank"> <img src="idz-siegel{$versioned_jpg}" width="190" height="79" |