Replace | with - between site name and subtitle in open graph title

This commit is contained in:
Tom Gurion
2017-09-02 22:16:51 +01:00
parent d492ee6d32
commit 890401c658
+1 -1
View File
@@ -9,7 +9,7 @@
{% block metadata %}
<meta name="description" content="{{ BIO }}" />
<meta property="og:description" content="{{ BIO }}" />
<meta property="og:title" content="{{ SITENAME }}{% if SITESUBTITLE %} | {{ SITESUBTITLE }}{% endif %}" />
<meta property="og:title" content="{{ SITENAME }}{% if SITESUBTITLE %} - {{ SITESUBTITLE }}{% endif %}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ SITEURL }}" />
{% endblock %}