summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2016-07-04 13:35:55 +0200
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2016-07-04 13:38:07 +0200
commita3cfb91fee1d418024156758e33c566f3f21e0c0 (patch)
tree65c2c53f8e77c374b178dd0fce4ce96ac8c68bd4
parent9de55450199a01dc406c52a27b0098ca0520f0a0 (diff)
downloadmutti-web-a3cfb91fee1d418024156758e33c566f3f21e0c0.tar.gz
mutti-web-a3cfb91fee1d418024156758e33c566f3f21e0c0.tar.bz2
mutti-web-a3cfb91fee1d418024156758e33c566f3f21e0c0.zip
xsl/layout.xsl: Use xsl:text throughout the document
..to allow the xml write to inline the entire markup
-rw-r--r--xsl/common.xsl5
-rw-r--r--xsl/layout.xsl21
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&amp;id=100021">
- Referenzen
+ <xsl:text>Referenzen</xsl:text>
</a>
</aside>
</main>