{#- Reyn — main template override for MkDocs Material 9.x. Material's {% block site_nav %} contains BOTH nav sidebar and TOC sidebar. We override it for the nav column only. TOC goes in {% block container %} after the content div. -#} {% extends "base.html" %} {# ── Left nav sidebar (replaces Material's primary + secondary sidebar block) ── #} {% block site_nav %}
{% for item in nav %} {% if item.children %}

{{ item.title }}

{% else %} {% endif %} {% endfor %}
{% endblock %} {# ── Main content + right TOC rail ── #} {% block container %}
{% if "navigation.path" in features %}{% include "partials/path.html" %}{% endif %}
{% block content %}{% include "partials/content.html" %}{% endblock %}
{% if page.toc %}

On this page

{% endif %} {% endblock %}