{% extends "base.html" %} {% from "chirpui/layout.html" import stack %} {% from "chirpui/rendered_content.html" import rendered_content %} {% block content %} {% let element = element | default(metadata?.autodoc_element ?? none) %} {% let meta = element?.metadata ?? {} %} {% let method = meta?.method ?? element?.method ?? "GET" %} {% let path = meta?.path ?? element?.path ?? element?.qualified_name ?? element?.name ?? "/" %}
{% include "autodoc/partials/header.html" %}
{% call stack(gap="lg") %}
{{ method | upper }} {{ path }}
{% include "autodoc/openapi/partials/playground-bar.html" %} {% if element?.description ?? none %} {% call rendered_content(compact=true, cls="chirp-theme-reference-description") %}{{ element.description |> markdownify |> safe }}{% end %} {% end %} {% include "autodoc/partials/params-table.html" %} {% include "autodoc/openapi/partials/request-body.html" %} {% include "autodoc/openapi/partials/responses.html" %} {% end %}
{% with footer_class='chirp-theme-footer chirp-theme-footer--shell' %}{% include 'partials/site-footer.html' %}{% end %}
{% if toc_items | length > 0 %} {% end %}
{% end %} {% block site_footer %}{% end %}