Skip to content

Commit 908ae04

Browse files
author
Richard Jones
committed
added DOCTYPE
1 parent f11518c commit 908ae04

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

templates/classic/html/page.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
<html metal:define-macro="icing">
1+
<tal:block metal:define-macro="icing">
2+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
3+
"http://www.w3.org/TR/html4/strict.dtd">
4+
<html>
25
<head>
36
<title metal:define-slot="head_title">title goes here</title>
47
<meta http-equiv="Content-Type" content="text/html; charset=utf-8;">
@@ -108,6 +111,7 @@
108111

109112
</body>
110113
</html>
114+
</tal:block>
111115

112116
<td metal:define-macro="search_input">
113117
<input tal:attributes="value python:request.form.getvalue(name) or nothing;

templates/minimal/html/page.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
<html metal:define-macro="icing">
1+
<tal:block metal:define-macro="icing">
2+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
3+
"http://www.w3.org/TR/html4/strict.dtd">
4+
<html>
25
<head>
36
<title metal:define-slot="head_title">title goes here</title>
47
<meta http-equiv="Content-Type" content="text/html; charset=utf-8;">
@@ -67,3 +70,4 @@
6770

6871
</body>
6972
</html>
73+
</tal:block>

0 commit comments

Comments
 (0)