mestizo.monster/_includes/_og.njk
taco f1b8097978 feat: migrate to 11ty (#1)
alas, hugo. we hardly knew ye.

Reviewed-on: https://git.tacowolf.net/TacoWolf/mestizo.monster/pulls/1
Co-authored-by: taco <signing@tacowolf.net>
Co-committed-by: taco <signing@tacowolf.net>
2026-04-10 19:48:32 -04:00

28 lines
1.3 KiB
Text

{% if tags == "post" %}
<meta property="og:type" content="article" />
<meta property="og:url" content="https://mestizo.monster/{{ url }}" />
<meta property="article:author" content="https://mestizo.monster/about" />
<meta property="article:section" content="{{ section }}" />
{% for tag in keywords %}
<meta property="article:tag" content="{{ tag }}" />
{% endfor %}
<meta property="og:locale" content="en_US" />
<meta property="og:title" content="{{ title }} - mestizo.monster" />
<meta property="og:description" content="{{ description }}" />
<meta property="og:image" content="https://mestizo.monster/img/taco.svg" />
<meta
property="og:image:alt"
content="vector drawing of a smiling cartoon taco with tortilla legs."
/>
{% else %}
<meta property="og:type" content="website" />
<meta property="og:url" content="https://mestizo.monster{{ page.url }}" />
<meta property="og:locale" content="en_US" />
<meta property="og:title" content="{{ title }} - mestizo.monster" />
<meta property="og:description" content="{{ description }}" />
<meta property="og:image" content="https://mestizo.monster/img/taco.svg" />
<meta
property="og:image:alt"
content="vector drawing of a smiling cartoon taco with tortilla legs."
/>
{% endif %}