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.html.twig

38 lines
1.3 KiB
Twig
Raw Normal View History

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 %}
2015-08-20 20:56:18 +00:00
<meta property="og:image" content="{{ og.image.url }}"/>
{% 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"/>
<meta name="twitter:image:src" content="{{ 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 %}