summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-02-09 16:17:11 +0200
committerAlon Levy <alon@pobox.com>2015-02-09 16:17:11 +0200
commit46a9857e413b1126c8696ebc0f7c50dd0413b0dc (patch)
tree1439c2e95e7dbe14fdd97ce8d733198b437c9cf1
parenta9252e7257d6637e747e0d5b78bef495551012df (diff)
base template: fix double html tag, missing closing html tag
-rw-r--r--res/templates/base.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/res/templates/base.html b/res/templates/base.html
index 75b4ea36..7369984d 100644
--- a/res/templates/base.html
+++ b/res/templates/base.html
@@ -1,6 +1,5 @@
<!DOCTYPE html>
-<html lang="en">
-<html xmlns="http://www.w3.org/1999/xhtml">
+<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
{% block head %}
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
@@ -14,4 +13,5 @@
<body>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">{% block footer %}{% endblock %}</div>
-</body> \ No newline at end of file
+</body>
+</html>