{% extends "base.html" %} {% block title %}{{ page.title }} | Docs — {{ config.title }}{% endblock title %} {% block content %} {# Fetch all doc pages for sidebar navigation #} {% set docs_section = get_section(path="docs/_index.md") %}
{# ── Mobile sidebar toggle ─────────────────────────────── #} {# ── Left sidebar — doc page list ─────────────────────── #} {# ── Sidebar backdrop for mobile ──────────────────────── #} {# ── Main content area ─────────────────────────────────── #}

{{ page.title }}

{# ── Inline table of contents ────────────────────────── #} {% if page.toc %}
On this page
{% endif %} {# ── Page body ───────────────────────────────────────── #}
{{ page.content | safe }}
{# ── Prev / Next navigation ─────────────────────────── #} {% if page.lower or page.higher %} {% endif %}
{% endblock content %}