500.html
HTML document, ASCII text
1{% extends "error.html" %} 2 3{% set error = "Internal server error" %} 4{% set error_code = 500 %} 5 6{% block error_content %} 7<p> 8The server crashed and there is no further information about what happened. 9Your request broke the software running the server. Now please get out of here so you don't 10break anything else, and report this to the server administrator, whose email can be found 11below, so we know there's a problem.<br> 12Now enjoy the random picture here. That is, if the server didn't crash 13whilst trying to fetch it. 14</p> 15<p> 16<a href="/">Home page</a> 17</p> 18<p> 19<a href="/picture/{{ random_picture.id }}/">Like what you see?</a> 20</p> 21{% endblock %} 22