From bf8b87730aa24524c0974cd4083a30c0d1c411a1 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 7 Oct 2023 20:01:56 +0200 Subject: [PATCH] Avoid doctype warning --- blog_experiment/blog/html.py | 1 + 1 file changed, 1 insertion(+) diff --git a/blog_experiment/blog/html.py b/blog_experiment/blog/html.py index 7293d39..a114318 100644 --- a/blog_experiment/blog/html.py +++ b/blog_experiment/blog/html.py @@ -23,6 +23,7 @@ def html_template(*content): h.H2("Hay otros como él, pero este es el mío"), *content, ), + doctype="html", ), {}, ) -- 2.47.3