Initial web
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user