diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2020-06-28 16:47:31 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2020-06-28 16:47:31 +0200 |
commit | 6accfc2a36e204e34452e5e8a9676cad42610a7e (patch) | |
tree | a36c467b5869a62e22c27cbb09dc8827fb2f24e6 /templates | |
parent | 8ff9fc57bdf585a0dce2c6a8fdfbb5153a0d9140 (diff) | |
download | rabalderz-6accfc2a36e204e34452e5e8a9676cad42610a7e.tar.gz rabalderz-6accfc2a36e204e34452e5e8a9676cad42610a7e.tar.bz2 rabalderz-6accfc2a36e204e34452e5e8a9676cad42610a7e.zip |
Base template had an xhtml tag ending for some reason.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 1ed2ca6..a2ddeb9 100644 --- a/templates/base.html +++ b/templates/base.html @@ -2,7 +2,7 @@ <html> <head> <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width initial-scale=1" /> + <meta name="viewport" content="width=device-width initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>{% if page.title %}{{ page.title }}{% else %}{{ config.title }}{% endif %}</title> |