mirror of
https://github.com/pawroman/zola-theme-terminimal
synced 2024-11-23 04:53:04 +00: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 %}
|