{# Page Hero: Use direct macro call with explicit context #}
{% from 'partials/page-hero.html' import hero_element %}
{{ hero_element(element, page, config) }}
{# Article Content - Unified autodoc skeleton #}
{# Usage - CLI uses spaces, not dots #}
{% if qualified_name %}
{% let cli_usage = qualified_name | replace('.', ' ') %}
Usage
{{ cli_usage }} [COMMAND] [OPTIONS]
{% end %}
{# Commands and Sub-groups - using CommandView properties #}
{% if subcommands | length > 0 %}
{% end %}
{# Tags - with null-safe access #}
{% if page_tags | length > 0 %}
{% end %}
{# Page navigation (prev/next) at bottom - null-safe #}
{% if page %}
{{ page_navigation(page) }}
{% end %}
{# Right Sidebar: Contextual Graph + TOC + Metadata #}
{% include 'partials/docs-toc-sidebar.html' %}