mirror of
https://github.com/c0de-archive/pelican-mg.git
synced 2024-11-01 07:17:47 +00:00
14 lines
481 B
HTML
14 lines
481 B
HTML
{% block seo %}
|
|
<meta property="og:title" content="{{ SITENAME }}" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="{{ SITEURL }}" />
|
|
<meta name="twitter:url" content="{{ SITEURL }}" />
|
|
{% if OG_IMAGE %}
|
|
<meta property="og:image" content="{{ SITEURL }}/static/{{ OG_IMAGE }}" />
|
|
<meta property="og:image:type" content="{{ OG_IMAGE_TYPE }}" />
|
|
<meta name="twitter:image" content="{{ SITEURL }}/static/{{ OG_IMAGE }}" />
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|