405.html
    
    HTML document, ASCII text
        
            1
            {% extends "error.html" %} 
        
            2
             
        
            3
            {% set error = "Method not allowed" %} 
        
            4
            {% set error_code = 405 %} 
        
            5
             
        
            6
            {% block error_content %} 
        
            7
                <p> 
        
            8
                    The server knows this URL, but it's not meant to be used with this HTTP method. You probably 
        
            9
                    came here either from an API mistake, or to flex your cybersecurity skills (it won't work here).<br> 
        
            10
                    While you figure out what to do, relax with this beautiful (or not, we don't know) random picture. 
        
            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