From 3682f4891755b981ff3616cd98bad9ff3a086fe5 Mon Sep 17 00:00:00 2001 From: krdln Date: Wed, 9 Sep 2015 02:11:04 +0200 Subject: Fix encoding issue in title in article template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The title containted '·' string, which probably was a result of re-encoding UTF-8 as UTF-8. Replaced with '·'. --- themes/rusted/templates/article.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'themes') 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 %} -- cgit v1.2.3