some in-progress opengraph support
This commit is contained in:
parent
7d4dbfd1d9
commit
33ae2bef34
@ -8,6 +8,12 @@ draft: false
|
|||||||
extra:
|
extra:
|
||||||
icon: las la-music
|
icon: las la-music
|
||||||
excerpt: '"Channels" is a single by Evan Pratten, released on November 25, 2022.'
|
excerpt: '"Channels" is a single by Evan Pratten, released on November 25, 2022.'
|
||||||
|
opengraph:
|
||||||
|
song:
|
||||||
|
duration: 3:24
|
||||||
|
artists:
|
||||||
|
- first_name: Evan
|
||||||
|
last_name: Pratten
|
||||||
---
|
---
|
||||||
|
|
||||||
I just published a new song!
|
I just published a new song!
|
||||||
|
@ -19,3 +19,16 @@
|
|||||||
{% if is_article %}
|
{% if is_article %}
|
||||||
<meta property="og:type" content="article" />
|
<meta property="og:type" content="article" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{# music specifics #}
|
||||||
|
{% if opengraph %}
|
||||||
|
{% if opengraph.song %}
|
||||||
|
<meta property="og:type" content="music.song" />
|
||||||
|
<meta property="music:duration" content="{{opengraph.song.duration}}" />
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if opengraph.album %}
|
||||||
|
<meta property="og:type" content="music.album" />
|
||||||
|
<meta property="music:release_date" content="{{opengraph.song.duration}}" />
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
@ -32,6 +32,9 @@
|
|||||||
{% if page.extra.redir_to %}
|
{% if page.extra.redir_to %}
|
||||||
{% set redirect_target = page.extra.redir_to %}
|
{% set redirect_target = page.extra.redir_to %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if page.extra.opengraph %}
|
||||||
|
{% set opengraph = page.extra.opengraph %}
|
||||||
|
{% endif %}
|
||||||
{% endblock variable_wormhole %}
|
{% endblock variable_wormhole %}
|
||||||
|
|
||||||
{# Page content #}
|
{# Page content #}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user