summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2016-07-03 21:48:20 +0200
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2016-07-03 22:24:17 +0200
commitd64530bb9954dc8907e932edb40bbfb0e16c7e7e (patch)
tree012692801246d8537d823c1a90bdca05a2f72e0a
parentc2ed69809c132241abf6a33550285f4dfba54884 (diff)
downloadmutti-web-d64530bb9954dc8907e932edb40bbfb0e16c7e7e.tar.gz
mutti-web-d64530bb9954dc8907e932edb40bbfb0e16c7e7e.tar.bz2
mutti-web-d64530bb9954dc8907e932edb40bbfb0e16c7e7e.zip
Optimize for html validator
-rw-r--r--Makefile2
-rw-r--r--checkmark.svg2
-rw-r--r--xsl/layout.xsl4
3 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 58f72a3..0978df5 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ pages=$(shell xsltproc xsl/main_filenames.xsl main.xml)
pages_gen=$(pages:%.xml=%$(suffix))
-common_depend=main.xml $(wildcard xsl/*.xsl) Makefile
+common_depend=main.xml $(wildcard xsl/*.xsl) Makefile checkmark.svg
DEFAULT_VERBOSITY=0
diff --git a/checkmark.svg b/checkmark.svg
index f29607d..89dd1fc 100644
--- a/checkmark.svg
+++ b/checkmark.svg
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="55" height="55" viewBox="0 0 55 55" id="checkmark">
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="55" height="55" viewBox="0 0 55 55" id="checkmark">
<path style="fill: #983d3a; stroke: #d45951; stroke-width: 0.2"
d="M 21,55
S 11,44 0,38
diff --git a/xsl/layout.xsl b/xsl/layout.xsl
index 0118afa..394e23a 100644
--- a/xsl/layout.xsl
+++ b/xsl/layout.xsl
@@ -9,15 +9,13 @@
<xsl:include href="common.xsl" />
<xsl:template match="s:html">
- <html>
+ <html lang="de">
<head>
<title>
<xsl:text><![CDATA[Unternehmensberatung & Controlling - Angelika Franzke - ]]></xsl:text>
<xsl:value-of select="$title"/>
</title>
- <!-- Hide compatibility mode button. -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" type="text/css" href="style/{$stylesheet}" />
</head>