haldis/app/templates/errors/404.html

10 lines
254 B
HTML
Raw Normal View History

2015-03-31 18:15:22 +00:00
{% extends "layout.html" -%}
{% block container %}
<div class="jumbotron">
<h1>Page Not Found</h1>
<p>What you were looking for is just not there.</p>
<p><a href="{{ url_for('general_bp.home') }}">Go somewhere nice</a></p>
</div>
{% endblock %}