{% extends "base.html" %} {% block head_title %}Error {{ statusCode }} - Bluesky{% endblock %} {% block noscript_extra %} {%- if statusCode == 404 %}

404: Not Found

{% endif %} {% endblock %} {# don't include the bundle on non-404 error pages #} {% block head_bundle %} {% if statusCode == 404 %} {{ super() }} {% else %} {% endif %} {% endblock %} {%- block body_all %} {% if statusCode == 404 %} {{ super() }} {% else %}

{{ statusCode }}: Server Error

Sorry about that! Our Status Page might have more context. {% endif %} {% endblock -%}