Skip to content

Commit 3682f48

Browse files
committed
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 '·'.
1 parent 9769355 commit 3682f48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

themes/rusted/templates/article.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends "base.html" %}
22

33
{% block title %}
4-
{{ article.title }} {%if article.subtitle %} - {{ article.subtitle }} {% endif %} · {{ super() }}
4+
{{ article.title }} {%if article.subtitle %} - {{ article.subtitle }} {% endif %} · {{ super() }}
55
{% endblock title %}
66

77
{% block head_description %}

0 commit comments

Comments
 (0)