16 lines
635 B
HTML
Raw Normal View History

2016-11-04 14:37:46 +01:00
2016-11-04 14:47:47 +01:00
{% set absolute_url = settings.url + "/" + name + "/" %}
2016-11-04 12:55:02 +01:00
<meta property="og:title" content="{{ gallery.title }}"/>
2016-11-04 14:55:04 +01:00
<meta property="og:image" content="{{ absolute_url }}{{ gallery.cover.generate_thumbnail("x900") }}"/>
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 %}