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.
29 lines
795 B
HTML
29 lines
795 B
HTML
4 years ago
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block title %}{{ config.title }} - 404{% endblock title %}
|
||
|
|
||
|
{% block navbar %}
|
||
|
{% for item in config.extra.zola386_menu %}
|
||
|
<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 %}
|