{% extends "base.html" %}
{% block extrahead %}
{#- absolute, not `| url`: Open Graph is read by a crawler with no page context, and a
relative path resolves against nothing. Built from `site_url`, which already ends in
the version directory -#}
{% set card = config.site_url ~ 'assets/social-card.png' %}
{% set card_title = config.site_name %}
{% if page and page.title and not page.is_homepage %}
{% set card_title = page.title ~ ' ยท ' ~ config.site_name %}
{% endif %}
{% if page and page.canonical_url %}
{% endif %}
{% endblock %}