diff options
Diffstat (limited to 'xsl')
-rw-r--r-- | xsl/common.xsl | 5 | ||||
-rw-r--r-- | xsl/layout.xsl | 21 |
2 files changed, 13 insertions, 13 deletions
diff --git a/xsl/common.xsl b/xsl/common.xsl index 07acb7d..4722eb3 100644 --- a/xsl/common.xsl +++ b/xsl/common.xsl @@ -25,6 +25,11 @@ doctype-system="about:legacy-compat" /> + <!-- + Removes leading and traling spaces, that we probably need! + <xsl:template match="text()" mode="html"><xsl:value-of select="normalize-space(.)"/></xsl:template> + --> + <xsl:template match="html:*" mode="html"> <xsl:copy> <!--<xsl:element name="{local-name()}">--> diff --git a/xsl/layout.xsl b/xsl/layout.xsl index 6ce773d..d64aad3 100644 --- a/xsl/layout.xsl +++ b/xsl/layout.xsl @@ -37,34 +37,29 @@ <article> <xsl:apply-templates mode="html" /> <p class="small"> - * Meine Dienstleistung umfasst das Buchen der lfd. Geschäftsvorfälle und die lfd. Lohnabrechnung + <xsl:text>* Meine Dienstleistung umfasst das Buchen der lfd. Geschäftsvorfälle und die lfd. Lohnabrechnung</xsl:text> </p> </article> <aside id="info"> - <strong> - Angelika Franzke<br/> - </strong> - Tel: 038461/52053<br/> - Fax: 038461/599811<br/> - Mobil: 0172/9302774<br/> - E-Mail: <a href="mailto:info@angelika-franzke.de">info@angelika-franzke.de</a> + <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.png?{$version}" class="social-icon" alt="Google Plus" /> </a> - <br/> - <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. + <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"> - Referenzen + <xsl:text>Referenzen</xsl:text> </a> </aside> </main> |