blob: 727da498048d2431573c4a703e1af1e4a7e7bad3 (
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="{% if article.opengraph_image is defined %}{{ SITEURL }}/{{ article.url }}{{ article.opengraph_image }}{% else %}{{ SITEURL }}/images/gamerdonkey_g_logo_og.jpg{% endif %}" />
{% endblock %}
|