aboutsummaryrefslogtreecommitdiff
path: root/templates/header.tmpl
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2021-04-23 10:19:09 +0000
committerr <r@freesoftwareextremist.com>2021-04-23 10:19:09 +0000
commit469f2d1d25f0b266abb15eab410131ebe1856aad (patch)
tree9d43be7fd30af12d186e5a54adf2ee9228f3243b /templates/header.tmpl
parentbd74cb50e7e7be61f88687bc2d5f7ac63b45ea70 (diff)
downloadbloat-469f2d1d25f0b266abb15eab410131ebe1856aad.tar.gz
bloat-469f2d1d25f0b266abb15eab410131ebe1856aad.zip
Fix HTML escaping
Diffstat (limited to 'templates/header.tmpl')
-rw-r--r--templates/header.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/header.tmpl b/templates/header.tmpl
index 1abb6dd..8eb53f6 100644
--- a/templates/header.tmpl
+++ b/templates/header.tmpl
@@ -17,7 +17,7 @@
{{if .RefreshInterval}}
<meta http-equiv="refresh" content="{{.RefreshInterval}}">
{{end}}
- <title> {{if gt .Count 0}}({{.Count}}){{end}} {{.Title}} </title>
+ <title> {{if gt .Count 0}}({{.Count}}){{end}} {{.Title | html}} </title>
<link rel="stylesheet" href="/static/style.css">
{{if .CustomCSS}}
<link rel="stylesheet" href="{{.CustomCSS}}">