OG_IMAGE now refers to absolute URL

This commit is contained in:
Luca Chiricozzi 2015-01-01 21:25:00 +01:00
parent 08473d33a5
commit 18bceeafe8
1 changed files with 2 additions and 2 deletions

View File

@ -4,9 +4,9 @@
<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" content="{{ OG_IMAGE }}" />
<meta property="og:image:type" content="{{ OG_IMAGE_TYPE }}" />
<meta name="twitter:image" content="{{ SITEURL }}/static/{{ OG_IMAGE }}" />
<meta name="twitter:image" content="{{ OG_IMAGE }}" />
{% endif %}
{% endblock %}