{% extends "base.html" %}
{#
SEO and AEO head additions for the TRACE docs.
Adds OpenGraph and Twitter card meta plus JSON-LD structured data
(Organization, WebSite, SoftwareApplication) so search engines and
AI answer engines can describe and cite the specification accurately.
Material already emits the canonical link when site_url is set, so it
is not repeated here.
#}
{% block extrahead %}
{{ super() }}
{% set page_title = page.title ~ " - " ~ config.site_name if page and page.title and not page.is_homepage else config.site_name %}
{% set page_desc = page.meta.description if page and page.meta and page.meta.description else config.site_description %}
{% set page_url = page.canonical_url if page and page.canonical_url else config.site_url %}
{% endblock %}