This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_partials/og.twig

43 lines
1.7 KiB
Twig
Raw Normal View History

2017-05-02 00:17:27 +00:00
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
2017-05-08 20:30:35 +00:00
<meta property="og:title" content="{{ og.title ? og.title|raw : page.title|raw }}"/>
2015-04-12 08:15:30 +00:00
{% 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 %}
2017-05-08 20:30:35 +00:00
{% else %}
<meta property="og:image" content="{{ site.url }}{{ site.avatar.url }}"/>
<meta property="og:image:height" content="327"/>
<meta property="og:image:type" content="image/jpg">
<meta property="og:image:width" content="327"/>
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-08-20 20:56:18 +00:00
{% else %}
<meta name="twitter:card" content="summary"/>
2017-05-08 20:30:35 +00:00
<meta name="twitter:image:src" content="{{ site.url }}{{ site.avatar.url }}">
2015-08-20 20:56:18 +00:00
{% endif %}
2017-05-08 20:30:35 +00:00
<meta name="twitter:creator" content="@{{ site.twitter.name }}"/>
2015-08-20 20:56:18 +00:00
<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 %}