{#- SPDX-FileCopyrightText: 2026 Toon Verstraelen SPDX-License-Identifier: LGPL-3.0-or-later Open Graph and Twitter card tags, which the Zensical templates do not emit. Without them, a link to this site posted anywhere renders as a bare URL. The Google Search Console verification tag has no setting in `zensical.toml` either, so it is added here as well. The title and the description follow the same fallbacks as `base.html`, so a page that sets neither still gets the values of `zensical.toml`. -#} {% extends "base.html" %} {% block extrahead %} {% set og_title = page.meta.title if page.meta and page.meta.title else (page.title | striptags if page.title and not page.is_homepage else config.site_name) %} {% set og_description = page.meta.description if page.meta and page.meta.description else config.site_description %} {% set og_url = page.canonical_url if page.canonical_url else config.site_url %} {% set og_image = config.site_url ~ "assets/images/social-card.png" %} {% endblock %}