mirror of
https://github.com/pawroman/zola-theme-terminimal.git
synced 2025-01-09 20:21:06 +01:00
17 lines
324 B
HTML
17 lines
324 B
HTML
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
404
|
||
|
{% endblock title %}
|
||
|
|
||
|
{% block header_menu %}
|
||
|
{{ menu_macros::menu_for(config=config, current_item="") }}
|
||
|
{% endblock header_menu %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="post">
|
||
|
<h1 class="post-title">Lost?</h1>
|
||
|
<p>This page does not exist.</p>
|
||
|
</div>
|
||
|
{% endblock content %}
|