{% extends "base.html" %}
{#
mkdocs-material theme override.
Adds:
- schema.org JSON-LD (SoftwareApplication on /, TechArticle on docs).
Lets Google index the project as a software product (App
knowledge-graph card) and individual doc pages as technical
articles (rich-result eligibility).
- Open Graph + Twitter card metadata. mkdocs-material emits some
of these by default; we layer ours on top so the social-preview
image and the canonical URL are explicit.
- JSON-LD validates against schema.org's reference and Google's
rich-result test (Search Console → Inspect URL).
#}
{% block extrahead %}
{{ super() }}
{# --- Open Graph / Twitter card --- #}
{# --- Bluesky / fediverse note via the app: protocol-agnostic. --- #}
{# --- schema.org JSON-LD --- #}
{% if page.is_homepage %}
{% else %}
{% endif %}
{% endblock %}