2017-05-02 00:17:27 +00:00
|
|
|
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
|
|
|
|
|
2015-04-12 08:15:30 +00:00
|
|
|
{% if og.title %}
|
2015-08-20 20:56:18 +00:00
|
|
|
<meta property="og:title" content="{{ og.title|raw }}"/>
|
2015-04-12 08:15:30 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if og.description %}
|
2015-08-20 20:56:18 +00:00
|
|
|
<meta property="og:description" content="{{ og.description|raw }}"/>
|
2015-04-12 08:15:30 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if og.type %}
|
2015-08-20 20:56:18 +00:00
|
|
|
<meta property="og:type" content="{{ og.type }}"/>
|
2015-04-12 08:15:30 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if og.image and og.image.url %}
|
2017-04-21 09:22:52 +00:00
|
|
|
<meta property="og:image" content="{{ site.url }}{{ og.image.url }}"/>
|
2015-08-20 20:56:18 +00:00
|
|
|
{% if og.image.type %}
|
|
|
|
<meta property="og:image:type" content="{{ og.image.type }}"/>
|
|
|
|
{% endif %}
|
|
|
|
{% if og.image.width %}
|
|
|
|
<meta property="og:image:width" content="{{ og.image.width }}"/>
|
|
|
|
{% endif %}
|
|
|
|
{% if og.image.height %}
|
|
|
|
<meta property="og:image:height" content="{{ og.image.height }}"/>
|
|
|
|
{% endif %}
|
2015-04-12 08:15:30 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if og.title %}
|
2015-08-20 20:56:18 +00:00
|
|
|
{% if og.image %}
|
|
|
|
<meta name="twitter:card" content="summary_large_image"/>
|
2017-04-21 09:22:52 +00:00
|
|
|
<meta name="twitter:image:src" content="{{ site.url }}{{ og.image.url }}">
|
2015-09-13 16:59:01 +00:00
|
|
|
<meta name="twitter:creator" content="@{{ site.twitter.name }}"/>
|
2015-08-20 20:56:18 +00:00
|
|
|
{% else %}
|
|
|
|
<meta name="twitter:card" content="summary"/>
|
|
|
|
{% endif %}
|
|
|
|
<meta name="twitter:title" content="{{ og.title|raw }}"/>
|
2016-05-15 08:37:40 +00:00
|
|
|
<meta name="twitter:text:description" content="{{ og.description|raw }}"/>
|
2015-09-13 16:59:01 +00:00
|
|
|
<meta name="twitter:site" content="@{{ site.twitter.name }}"/>
|
2015-06-14 02:27:41 +00:00
|
|
|
{% endif %}
|