503.html
HTML document, ASCII text
1
{% extends "error.html" %}
2
3
{% set error = "Service unavailable" %}
4
{% set error_code = 503 %}
5
6
{% block error_content %}
7
<p>
8
A server administrator has decided that they're bored of the server running normally, so
9
they put it in a maintenance mode. You should go touch grass while the server is down.<br>
10
We've also served a random picture here as a compensation for the inconvenience.
11
</p>
12
<p>
13
<a href="/">Home page</a>
14
</p>
15
<p>
16
<a href="/picture/{{ random_picture.id }}/">Like what you see?</a>
17
</p>
18
{% endblock %}
19