diff options
Diffstat (limited to 'bskyweb/templates/error.html')
-rw-r--r-- | bskyweb/templates/error.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bskyweb/templates/error.html b/bskyweb/templates/error.html new file mode 100644 index 000000000..e40d8c4ab --- /dev/null +++ b/bskyweb/templates/error.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} + +{% block head_title %}Error {{ statusCode }} - Bluesky{% endblock %} + +{# don't include the bundle on error pages #} +{% block head_bundle %}{% endblock %} + +{% block body_all %} + {% if statusCode == 404 %} + <h1>404: Not Found</h1> + {% 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 %} |