19 lines
719 B
HTML
Raw Normal View History

2016-11-04 14:47:47 +01:00
{% set absolute_url = settings.url + "/" + name + "/" %}
2017-05-06 10:17:46 +02:00
<meta property="og:title" content="{{ gallery.title }}"/>
{% if gallery.cover %}
2016-11-04 15:02:18 +01:00
{% set cover = Image(gallery.cover) %}
{{ cover.copy() }}
<meta property="og:image" content="{{ absolute_url }}{{ cover.generate_thumbnail("x900") }}"/>
2017-05-06 10:17:46 +02:00
{% endif %}
2016-11-04 12:55:02 +01:00
<meta property="og:site_name" content="{{ settings.title }}"/>
{% if gallery.description %}
<meta property="og:description" content="{{ gallery.description }}"/>
{% endif %}
<meta property="og:type" content="article"/>
<meta property="article:published_time" content="{{ gallery.date }}">
{% if gallery.tags %}
{% for tag in gallery.tags %}
<meta property="article:tag" content="{{ tag }}">
{% endfor %}
{% endif %}