You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
437 B
HTML
29 lines
437 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Page Not Found{% endblock %}
|
|
|
|
{% block css %}
|
|
<style type="text/css">
|
|
body{
|
|
padding-top: 40px;
|
|
}
|
|
h1, p{
|
|
text-align:center;
|
|
}
|
|
h1{
|
|
font-size:44px;
|
|
margin:75px 0 50px;
|
|
}
|
|
p{
|
|
font-size:14px;
|
|
margin:15px 0;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<h1>404</h1>
|
|
<p>Page not found.</p>
|
|
<p><a href="{{ url_for('home') }}">go back home</a>?</p>
|
|
{% endblock %}
|