diff options
author | mjfernez <mjfernez@gmail.com> | 2021-06-09 18:56:20 -0400 |
---|---|---|
committer | mjfernez <mjfernez@gmail.com> | 2021-06-09 18:56:47 -0400 |
commit | e9d152560dcd807fa76390942a0e38b362e0ec89 (patch) | |
tree | c160460850ceb57433eb1863b7353fcd0d9ae1fa /templates/base.html | |
parent | e6da718cae160800832d0df7e8d81610ba376e3d (diff) | |
download | ezcms-e9d152560dcd807fa76390942a0e38b362e0ec89.tar.gz |
Force UTF-8 encoding
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index b2e8e74..5c4e189 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,6 +1,8 @@ -<html> +<!DOCTYPE html> +<html lang="en"> <title>{{ domain }}/{{ title }}</title> <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> {% block css%} <link rel="stylesheet" type="text/css" href="/static/main.css"> {% endblock %} |