about summary refs log tree commit diff
path: root/bskyweb/templates/error.html
blob: e40d8c4ab9711ac27c28e31109faa5c05eb3246e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 %}