{# 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 #}
{% if qualified_name %}
Usage
{{ qualified_name }} [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' %}