diff options
Diffstat (limited to 'templates/404.html')
| -rw-r--r-- | templates/404.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..071d8bd --- /dev/null +++ b/templates/404.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} + +{% block head_extra %} +<meta name="robots" content="noindex"> +{% endblock head_extra %} + +{% block title %}404 Page Not Found - {{ config.title }}{% endblock title %} +{% block description %}The requested resource was not found (404){% endblock description %} + +{% block og_title %}404 Page Not Found - {{ config.title }}{% endblock og_title %} +{% block og_description %}The requested resource was not found (404){% endblock og_description %} + +{% block main %} +<article> + <h1> + The requested page was not found. + </h1> + + <p> + The URL is either invalid or the page was deleted. + <br> + Anyways, <a href="/">Return to the homepage.</a> + </p> +<article/> +{% endblock main %} |