aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/errors/404.html
blob: 49c9ef5acac9c0717eda4ab387067ad2f0229756 (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="jumbotron">
        <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