{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}
{% if kind == 'search' %} {% if search_mode == 'agent' %} {% include "docs/_chat.html" %} {% else %} {% include "docs/_search.html" %} {% endif %} {% elif kind == 'api' %} {% include "docs/_api_page.html" %} {% elif prose_html %} {{ prose_html | safe }} {% else %} {% include "docs/" ~ current ~ ".html" %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}