{% extends "_doc_base.html" %} {% block content %}

{{ project_name }}

{{ tagline }}

{% set ns = namespace(first_page=None) %} {% for group in navigation %} {% if not ns.first_page and group.pages %} {% set ns.first_page = group.pages[0] %} {% endif %} {% endfor %} {% if ns.first_page %} Get Started {% endif %}
๐Ÿค–
AI-friendly documentation

This documentation is optimized for AI consumption.

{% for group in navigation %}

{{ group.group }}

{% if group.pages|length > 0 %} Explore → {% endif %}
{% endfor %}
{% endblock %}