summaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
authorkrdln <mkrdln@gmail.com>2015-09-09 02:11:04 +0200
committerkrdln <mkrdln@gmail.com>2015-09-09 02:11:04 +0200
commit3682f4891755b981ff3616cd98bad9ff3a086fe5 (patch)
treee410640699ba4dc9ac3fd33b8153a0ee9bb59759 /themes
parent9769355829735c52be8dff04bf2dfd9e573a171e (diff)
Fix encoding issue in title in article template
The title containted '·' string, which probably was a result of re-encoding UTF-8 as UTF-8. Replaced with '·'.
Diffstat (limited to 'themes')
-rw-r--r--themes/rusted/templates/article.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/rusted/templates/article.html b/themes/rusted/templates/article.html
index 416f91b..bd15a8f 100644
--- a/themes/rusted/templates/article.html
+++ b/themes/rusted/templates/article.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block title %}
-{{ article.title }} {%if article.subtitle %} - {{ article.subtitle }} {% endif %} · {{ super() }}
+{{ article.title }} {%if article.subtitle %} - {{ article.subtitle }} {% endif %} · {{ super() }}
{% endblock title %}
{% block head_description %}