diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-07-27 23:39:55 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-07-28 00:08:34 +0100 |
commit | 57b8242f7ed37ba4b59ba92deb54f14191cf740c (patch) | |
tree | 4a2e7b918e45768ea2e0d5c41a830ac50bcef093 | |
parent | a624cc8a68fa5f24d010292d4482d2084c9fb825 (diff) | |
download | troggle-57b8242f7ed37ba4b59ba92deb54f14191cf740c.tar.gz troggle-57b8242f7ed37ba4b59ba92deb54f14191cf740c.tar.bz2 troggle-57b8242f7ed37ba4b59ba92deb54f14191cf740c.zip |
utf-8 templates .gitignore
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | templates/cavebase.html | 2 | ||||
-rw-r--r-- | templates/plainbase.html | 2 |
3 files changed, 2 insertions, 3 deletions
@@ -25,7 +25,6 @@ troggle-sqlite.sql import_profile.json ignored-files.log tunnel-import.log -posnotfound troggle.sqlite-journal loadsurvexblks.log logbktrips.shelve diff --git a/templates/cavebase.html b/templates/cavebase.html index 067a8b7..07685d5 100644 --- a/templates/cavebase.html +++ b/templates/cavebase.html @@ -1,7 +1,7 @@ <html lang="en"> <head> -<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{% block title %}{{ cave.official_name|safe }}{% endblock %} </title> <link rel="stylesheet" type="text/css" href="/css/main2.css" /> diff --git a/templates/plainbase.html b/templates/plainbase.html index 20067a7..afeb8f9 100644 --- a/templates/plainbase.html +++ b/templates/plainbase.html @@ -1,7 +1,7 @@ {% autoescape off %} <html> <head> -<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{% block title %}{% endblock %}</title> <link rel="stylesheet" type="text/css" href="/css/main2.css" /> <link rel="stylesheet" type="text/css" href="{{ settings.JSLIB_URL }}jquery-ui/css/smoothness/jquery-ui.css" /> |