diff options
author | Dan McGee <dan@archlinux.org> | 2010-01-31 16:31:31 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-01-31 16:31:31 -0600 |
commit | b1a5a6d968b5062abd72c8c87c3511e220aeaa35 (patch) | |
tree | b82a6d2327f01eb94451eb3a922286e29449c703 /templates | |
parent | 0dd128a6db267353090a3be90a564d888898ee8f (diff) |
Fix up doctype header as recommended by w3 validator
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 63b1f527..38888aad 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,4 +1,5 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1-strict.dtd "> +<!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" xml:lang="en" lang="en"> <head> <title>{% block title %}Arch Linux{% endblock %}</title> |