Bluesky app fork with some witchin' additions 馃挮
at main 655 B view raw
1{% extends "base.html" %} 2 3{% block head_title %}Error {{ statusCode }} - Bluesky{% endblock %} 4 5{% block noscript_extra %} 6 {%- if statusCode == 404 %} 7 <h1>404: Not Found</h1> 8 {% endif %} 9{% endblock %} 10 11 12{# don't include the bundle on non-404 error pages #} 13{% block head_bundle %} 14 {% if statusCode == 404 %} 15 {{ block.Super }} 16 {% else %} 17 {% endif %} 18{% endblock %} 19 20{%- block body_all %} 21 {% if statusCode == 404 %} 22 {{ block.Super }} 23 {% else %} 24 <h1>{{ statusCode }}: Server Error</h1> 25 <p>Sorry about that! Our <a href="https://bluesky.statuspage.io/">Status Page</a> might have more context. 26 {% endif %} 27{% endblock -%}