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.
k0r.386/templates/404.html

22 lines
483 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.<br>
You can try to find it by browsing the menus.
</p>
<p>
<a href="{{ config.base_url }}" class="btn btn-info" role="button">Home</a>
</p>
{% endblock main %}
{% block sidebar %}
{% endblock sidebar %}