diff options
author | Dan McGee <dan@archlinux.org> | 2011-12-03 13:08:47 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-12-03 13:08:47 -0600 |
commit | b2de5fec2bd112eb937dcb98b25685078cccdeb1 (patch) | |
tree | ca5a44e307acfef77742abbf2b1cf9fe74c627cd /templates/base.html | |
parent | ff371bd37628ab6f66cf4add79bb67c276e49035 (diff) |
Switch to HTML5 doctype for base template
This moves us from XHTML strict to the more useful HTML5 doctype. One
old holdover table attribute (cellspacing) is also fixed.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html index 3b509070..a120c537 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,6 +1,5 @@ -<!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"> +<!DOCTYPE html> +<html lang="en"> <head> <title>{% block title %}Arch Linux{% endblock %}</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> |