18 lines
586 B
HTML
18 lines
586 B
HTML
|
{% extends 'pageWrapper.html' %}
|
||
|
{% import "macros.html" as macros %}
|
||
|
|
||
|
{% block head %}
|
||
|
<title>Page Not Found (404)</title>
|
||
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/404.css") }}" />
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
{% include 'header/oceanHeader.html' %}
|
||
|
<div id="page-not-found" class="grass-island">
|
||
|
<h1>This page is out of logic!</h1>
|
||
|
The page you're looking for doesn't exist.<br />
|
||
|
<a href="/">Click here to return to safety.</a>
|
||
|
</div>
|
||
|
{% include 'islandFooter.html' %}
|
||
|
{% endblock %}
|