20 lines
562 B
HTML
20 lines
562 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block title %}
|
|
<title>404 Page Not Found</title>
|
|
{% endblock %}
|
|
|
|
{% block pagetype %}error-404{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row justify-content-center">
|
|
<div class="col-10 col-md-5">
|
|
<div class="text-center px-3 my-8">
|
|
<h1>404</h1>
|
|
<h5>Page Not Found</h5>
|
|
<p class="text-muted mb-5">That page doesn't exist. If you got here from a link on the website, please report this issue. Thanks!</p>
|
|
<div><a href="/" class="btn btn-primary">Go to frontpage</a></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|