{% extends "layouts/docs_app.html" %} {% from "chirpui/layout.html" import cluster, container %} {% block app_content %} {% block error_content %} {% call container(max_width="52rem", cls="fura-error") %}

{{ error_headline | default("Page not found") }}

{{ error_message | default(error_lead) }}

{% if error_path %}

Requested path: {{ error_path }}

{% end %} {% if error_allowed_methods | default([]) | length > 0 %}

Allowed methods: {% for method in error_allowed_methods %} {{ method }}{% if not loop.last %}, {% end %} {% end %}

{% end %}
{% if error_show_search | default(true) %}

Search the catalog

Try a different query or browse suggested matches below.

{% include "partials/error_suggest_panel.html" %}
{% end %}

Quick recovery

{% call cluster(gap="sm", cls="fura-error__recovery") %} {% for link in error_recovery_links | default([]) %} {{ link.label }} {% endfor %} {% end %}
{% end %} {% end %} {% end %}