diff options
author | Josh Triplett <josh@freedesktop.org> | 2007-11-08 12:58:31 -0800 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2007-11-08 12:59:02 -0800 |
commit | 899d8366839735527e88b060a47d40c16c390df6 (patch) | |
tree | fd4b77fd9b34774f6cf2b9ee539f38903e2bb550 /templates | |
parent | 2bb218865e8e52256f3bc660d0a675446cb4f88a (diff) | |
download | ikiwiki-899d8366839735527e88b060a47d40c16c390df6.tar ikiwiki-899d8366839735527e88b060a47d40c16c390df6.tar.gz |
Add xmlns attribute on html element in templates; pages can now validate.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/misc.tmpl | 2 | ||||
-rw-r--r-- | templates/page.tmpl | 2 | ||||
-rw-r--r-- | templates/recentchanges.tmpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/misc.tmpl b/templates/misc.tmpl index 32e2c934e..184920eaf 100644 --- a/templates/misc.tmpl +++ b/templates/misc.tmpl @@ -1,6 +1,6 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html> +<html xmlns="http://www.w3.org/1999/xhtml"> <head> <base href="<TMPL_VAR BASEURL>" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> diff --git a/templates/page.tmpl b/templates/page.tmpl index a02345f89..3a1ac9ef8 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -1,6 +1,6 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html> +<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title><TMPL_VAR TITLE></title> diff --git a/templates/recentchanges.tmpl b/templates/recentchanges.tmpl index e954503f8..e03482f43 100644 --- a/templates/recentchanges.tmpl +++ b/templates/recentchanges.tmpl @@ -1,6 +1,6 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html> +<html xmlns="http://www.w3.org/1999/xhtml"> <head> <base href="<TMPL_VAR BASEURL>" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |