{% extends "base.html" %}
{# Resolve a page-specific title for og:title / twitter:title.
Homepage gets the marquee title; inner pages prepend the page title. #}
{% if page and page.is_homepage %}
{% set social_title = config.site_name ~ " / the mcp data platform for ai" %}
{% else %}
{% set social_title = page.title ~ " ยท " ~ config.site_name %}
{% endif %}
{% set og_image = config.site_url ~ "images/mcp-data-platform-og.png" %}
{% set og_alt = "mcp-data-platform / composable, semantic-first MCP server platform" %}
{% block extrahead %}
{# Load mermaid fullscreen BEFORE Material's bundle to capture diagram sources. #}
{% endblock %}
{# Inner-page skip-to-content. The homepage template overrides block header
wholesale and includes its own skiplink targeting #main. #}
{% block header %}
skip to content
{{ super() }}
{% endblock %}
{# Inner-page skip target. Material's has no
id, so we drop a focusable anchor at the top of the content area. The
homepage template overrides block container wholesale and sets id="main"
on its own element. #}
{% block content %}
{{ super() }}
{% endblock %}