mirror of
https://github.com/danog/Valinor.git
synced 2024-12-02 17:48:14 +01:00
11 lines
471 B
HTML
11 lines
471 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block extrahead %}
|
||
|
<meta name="description" content="{{ config.extra.meta.description }}">
|
||
|
<meta property="og:type" content="website">
|
||
|
<meta property="og:url" content="{{ config.site_url }}">
|
||
|
<meta property="og:title" content="{{ config.extra.meta.title }}">
|
||
|
<meta property="og:description" content="{{ config.extra.meta.description }}">
|
||
|
<meta property="og:image" content="{{ config.site_url }}{{ config.extra.meta.image }}">
|
||
|
{% endblock %}
|