aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/errors/404.html
blob: c64a2be8c9df4ea0a2bdd3684ff7d4a56180a881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "layout.html" %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<div class="container">
    <div class="well">
        <h1>Page Not Found</h1>
        <p>What you were looking for is just not there, go to the <a href="{{ url_for('home') }}">home page</a>.</p>
    </div>
</div>
{% endblock %}
bgstack15