{% extends "base.html" %} {# CLI Reference List Template Three-column layout optimized for CLI documentation section index pages: - Left sidebar: Navigation tree - Center: Content + Child page tiles - Right sidebar: TOC + metadata Usage: Set `template: autodoc/cli/list.html` in frontmatter Or set `type: autodoc-cli` to auto-select this template Features: - Automatically displays child pages and subsections as tiles - Disable with `show_children: false` in frontmatter #} {% from 'partials/navigation-components.html' import breadcrumbs, page_navigation, toc with context %} {% from 'partials/content-components.html' import tag_list, content_tiles with context %} {% block content %} {# Ensure page is set - use section.index_page if page not defined #} {# This is needed for breadcrumbs, sidebar navigation, and content rendering #} {% if not page is defined and section is defined %} {% set page = section.index_page %} {% endif %} {# Three-column documentation layout #}