blob: d339132905b53eba61e3f1f55234783de601cb1d (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends "!simple/article.html" %}
{% block head %}
{{ super() }}
<meta property="og:type" content="article" />
<meta property="og:url" content="{{ SITEURL }}/{{ article.url }}" />
<meta property="og:title" content="{{ article.title }}" />
<meta property="og:description" content="{{ article.summary | striptags }}" />
<meta property="og:image" content="{{ SITEURL }}/images/{% if article.opengraph_image is defined %}{{ article.opengraph_image }}{% else %}gamerdonkey_g_logo_og.png{% endif %}" />
{% endblock %}
|