remoteroastclub/templates/404.html
2023-08-01 12:13:54 +02:00

21 lines
No EOL
431 B
HTML

{% extends "index.html" %}
{% block title %}{{ config.title }} - 404{% endblock title %}
{% block header %}
<header class="bg-error">
<h1 class="text-white">404 - Not found</h1>
</header>
{% endblock header %}
{% block main %}
<p>
The page you requested was not found.
</p>
<p>
<a href="{{ config.base_url }}" class="btn btn-info" role="button">Home</a>
</p>
{% endblock main %}
{% block sidebar %}
{% endblock sidebar %}