mirror of
https://github.com/c0de-archive/pelican-mg.git
synced 2024-11-01 07:17:47 +00:00
17 lines
593 B
HTML
17 lines
593 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 }}" />
|
|
<meta itemprop="name" content="{{ SITENAME }}">
|
|
<meta itemprop="url" content="{{ SITEURL }}">
|
|
{% if META_IMAGE %}
|
|
<meta property="og:image" content="{{ META_IMAGE }}" />
|
|
<meta property="og:image:type" content="{{ META_IMAGE_TYPE }}" />
|
|
<meta name="twitter:image" content="{{ META_IMAGE }}" />
|
|
<meta itemprop="image" content="{{ META_IMAGE }}"/>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|