You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
362 B
15 lines
362 B
{% raw %}
|
|
{% extends "layout.html" %}
|
|
|
|
{% block page_title %}Page Not Found{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="jumbotron">
|
|
<div class="text-center">
|
|
<h1>404</h1>
|
|
<p>Sorry, that page doesn't exist.</p>
|
|
<p>Want to <a href="{{ url_for('public.home') }}">go home</a> instead?</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% endraw %}
|
|
|