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

29 lines
793 B
HTML

{% extends "index.html" %}
{% block title %}{{ config.title }} - 404{% endblock title %}
{% block navbar %}
{% for item in config.extra.menu_items %}
<li>
<a href="{{ config.base_url }}/{{item.path}}"><span>{{ item.name }}</span></a>
</li>
{% endfor %}
{% endblock %}
{% block header %}
<div class="alert alert-error navmargin">
<h1>404 - Not found</h1>
</div>
{% 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>
<a href="{{ config.base_url }}/categories" class="btn btn-info" role="button">Categories</a>
<a href="{{ config.base_url }}/tags" class="btn btn-info" role="button">Tags</a>
</p>
{% endblock main %}