summaryrefslogtreecommitdiff
path: root/themes/elenq/templates
diff options
context:
space:
mode:
Diffstat (limited to 'themes/elenq/templates')
-rw-r--r--themes/elenq/templates/article.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/themes/elenq/templates/article.html b/themes/elenq/templates/article.html
index 868b8bb..e5be1be 100644
--- a/themes/elenq/templates/article.html
+++ b/themes/elenq/templates/article.html
@@ -1,13 +1,18 @@
{% extends "base.html" %}
{% block head %}
{{ super() }}
+
+ {% if article.title %}
+ <meta name="og:title" content="{{article.title | striptags }}" />
+ {% endif %}
{% if article.description %}
<meta name="description" content="{{article.description}}" />
+ <meta name="og:description" content="{{article.description}}" />
{% endif %}
-
{% for tag in article.tags %}
<meta name="tags" content="{{tag}}" />
{% endfor %}
+ <meta property="og:type" content="article" />
{% endblock %}