{# SPDX-FileCopyrightText: 2026 PythonWoods #} {# SPDX-License-Identifier: Apache-2.0 #} {# home.html — Zensical/MkDocs Material homepage override Used when docs/index.md has `template: home.html` in frontmatter. Assembles the full landing page from Jinja2 partials (ADR-020: EN-Only). Translated from: src/pages/index.tsx (Docusaurus) ADR-037: No hardcoded SemVer. All version strings use {{ config.extra.zenzic_version }}. #} {% extends "main.html" %} {# Escaping the documentation grid entirely #} {% block tabs %}
{% include "partials/homepage/hero.html" %}
// EXECUTION_LAYER
{% include "partials/homepage/execution_layer.html" %}
// FAILURE_TOPOLOGY
{% include "partials/homepage/failure_topology.html" %}
// DIAGNOSTIC_OUTPUT
{% include "partials/homepage/diagnostic_output.html" %}
// ADAPTER_SURFACE
{% include "partials/homepage/adapter_surface.html" %} {% include "partials/homepage/enterprise_section.html" %}
// GOVERNANCE_GATE
{% include "partials/homepage/governance_gate.html" %}
// SUPPRESSION_POLICY
{% include "partials/homepage/suppression_policy.html" %}
{% endblock %}