summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2012-02-24 18:14:48 -0800
committerKenneth Graunke <kenneth@whitecape.org>2013-05-08 11:59:16 -0700
commit9dad4c8710c3605814ecb54cefc0e5aabdeb496d (patch)
treee21e4fa41cef07839b4509da8683779af082bf4c /templates
parentf3b54e717e57661416c2a70de83b6268feacae7a (diff)
html: Use XHTML 1.0 Strict.
We weren't specifying a DTD, which made validator.w3.org angry. There's no reason not to be strict or use SGML-based HTML, so go with XHTML. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Dylan Baker <baker.dylan.c@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/index.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html
index 400dde313..00a47bb1b 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,6 +1,9 @@
-<html>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Result summary </title>
<link rel="stylesheet" href="index.css"/>
</head>