Mercurial > p > roundup > code
changeset 1823:5f25bf57efb8
added DOCTYPE
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 30 Sep 2003 23:57:02 +0000 |
| parents | 7e32c7663781 |
| children | 24819ee5dfbc |
| files | templates/classic/html/page.html templates/minimal/html/page.html |
| diffstat | 2 files changed, 10 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/templates/classic/html/page.html Tue Sep 30 23:55:54 2003 +0000 +++ b/templates/classic/html/page.html Tue Sep 30 23:57:02 2003 +0000 @@ -1,4 +1,7 @@ -<html metal:define-macro="icing"> +<tal:block metal:define-macro="icing"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> +<html> <head> <title metal:define-slot="head_title">title goes here</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8;"> @@ -108,6 +111,7 @@ </body> </html> +</tal:block> <td metal:define-macro="search_input"> <input tal:attributes="value python:request.form.getvalue(name) or nothing;
--- a/templates/minimal/html/page.html Tue Sep 30 23:55:54 2003 +0000 +++ b/templates/minimal/html/page.html Tue Sep 30 23:57:02 2003 +0000 @@ -1,4 +1,7 @@ -<html metal:define-macro="icing"> +<tal:block metal:define-macro="icing"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> +<html> <head> <title metal:define-slot="head_title">title goes here</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8;"> @@ -67,3 +70,4 @@ </body> </html> +</tal:block>
