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

View File

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