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> 
        
            8
                    The server crashed and there is no further information about what happened. 
        
            9
                    Your request broke the software running the server. Now please get out of here so you don't 
        
            10
                    break anything else, and report this to the server administrator, whose email can be found 
        
            11
                    below, so we know there's a problem.<br> 
        
            12
                    Now enjoy the random picture here. That is, if the server didn't crash 
        
            13
                    whilst 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