diff options
author | Benjamin Franzke <benjaminfranzke@gmail.com> | 2017-07-22 16:02:46 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@gmail.com> | 2017-07-22 16:02:46 +0200 |
commit | bc704db72df66003cdf7909abd26887a4c1bc10a (patch) | |
tree | 5c1e796a0aced249e7e5a06f90809d4547c11191 /xsl | |
parent | 14ee97c8cce36ae83c7e4f5035b61a9acc938e47 (diff) | |
download | mutti-web-bc704db72df66003cdf7909abd26887a4c1bc10a.tar.gz mutti-web-bc704db72df66003cdf7909abd26887a4c1bc10a.tar.bz2 mutti-web-bc704db72df66003cdf7909abd26887a4c1bc10a.zip |
Switch title tag ordering
Diffstat (limited to 'xsl')
-rw-r--r-- | xsl/layout.xsl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/xsl/layout.xsl b/xsl/layout.xsl index e76b822..3f4cc07 100644 --- a/xsl/layout.xsl +++ b/xsl/layout.xsl @@ -12,8 +12,11 @@ <html lang="de"> <head> <title> - <xsl:text><![CDATA[Unternehmensberatung & Controlling - Angelika Franzke - ]]></xsl:text> - <xsl:value-of select="$title"/> + <xsl:if test="$filename != 'index.xml'"> + <xsl:value-of select="$title"/> + <xsl:text> – </xsl:text> + </xsl:if> + <xsl:text><![CDATA[Unternehmensberatung & Controlling, Angelika Franzke]]></xsl:text> </title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width" /> |