11 lines
184 B
HTML
11 lines
184 B
HTML
|
{% extends "layout.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
404 - {{ config.title }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>nothing here</h1>
|
||
|
<p><a href="/">top</a></p>
|
||
|
{% endblock %}
|