2023-03-14 21:00:44 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block head_title %}Error {{ statusCode }} - Bluesky{% endblock %}
|
|
|
|
|
2023-03-14 23:30:15 +01:00
|
|
|
{% block noscript_extra %}
|
|
|
|
{%- if statusCode == 404 %}
|
|
|
|
<h1>404: Not Found</h1>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2023-03-14 21:00:44 +01:00
|
|
|
|
2023-03-14 23:30:15 +01:00
|
|
|
{# don't include the bundle on non-404 error pages #}
|
|
|
|
{% block head_bundle %}
|
2023-03-14 21:00:44 +01:00
|
|
|
{% if statusCode == 404 %}
|
2023-03-14 23:30:15 +01:00
|
|
|
{{ super() }}
|
2023-03-14 21:00:44 +01:00
|
|
|
{% else %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2023-03-14 23:30:15 +01:00
|
|
|
|
|
|
|
{%- block body_all %}
|
|
|
|
{% if statusCode == 404 %}
|
|
|
|
{{ super() }}
|
|
|
|
{% else %}
|
|
|
|
<h1>{{ statusCode }}: Server Error</h1>
|
|
|
|
<p>Sorry about that! Our <a href="https://bluesky.statuspage.io/">Status Page</a> might have more context.
|
|
|
|
{% endif %}
|
|
|
|
{% endblock -%}
|