diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2016-07-04 20:45:07 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2016-07-04 20:46:00 +0200 |
commit | caf487ec260f4e8046f7d2808f942a966aef2a31 (patch) | |
tree | d05ce43fae30d3a28b96b054470d95f9d600949f | |
parent | e0b5f4628aa77a29abcb6f5c372a0a1c990f0e3d (diff) | |
download | mutti-web-caf487ec260f4e8046f7d2808f942a966aef2a31.tar.gz mutti-web-caf487ec260f4e8046f7d2808f942a966aef2a31.tar.bz2 mutti-web-caf487ec260f4e8046f7d2808f942a966aef2a31.zip |
Fix the default style import
-rw-r--r-- | inception.xml | 2 | ||||
-rw-r--r-- | xsl/common.xsl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/inception.xml b/inception.xml index 817d301..e7ef71d 100644 --- a/inception.xml +++ b/inception.xml @@ -4,7 +4,7 @@ xmlns="http://www.w3.org/1999/xhtml" xmlns:s="https://beratung-franzke.de/web-tpl"> - <h1>Existenzgründungsberatung</h1> + <h1>Existenz­gründungs­beratung</h1> <img src="kleine_pflanze.jpg" alt="Kleine Pflanze" class="right"/> <p> diff --git a/xsl/common.xsl b/xsl/common.xsl index 7ddf577..0b7eefc 100644 --- a/xsl/common.xsl +++ b/xsl/common.xsl @@ -16,7 +16,7 @@ <xsl:variable name="filename" select="/s:html/@name" /> <xsl:variable name="title" select="document('../main.xml')/s:site/s:page[@filename = $filename]/@title" /> <xsl:param name="suffix" select="'.xml'" /> - <xsl:param name="stylesheet" select="'@import url("style/style.css"'" /> + <xsl:param name="stylesheet" select="'@import url("style/style.css");'" /> <xsl:param name="version" select="''" /> <xsl:output method="xml" indent="no" encoding="utf-8" |