aboutsummaryrefslogblamecommitdiff
path: root/templates/404.html
blob: 48c3f0003a9368d1d329a2cba95e47d372f0c590 (plain) (tree)
1
2
3
4
5
6
7
8




                                
                                           

           


                                                                                                                              



                     
{% extends 'base.html' %}

{% block content %}
<div style="text-align:center;">
    <h1>404</h1>
    <p><strong>Page not found.</strong></p>

    <small>
        {% set email = config.extra.author.email | trim %}
        {% set subject = 'I found a broken page' | trim %}
        <p>If you see this message, please <a href="mailto:{{ email }}?subject={{ subject | urlencode }}">let me know</a>.</p>
    </small>
</div>

{% endblock content %}