8 lines
203 B
HTML
8 lines
203 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}404 · {{ config.title }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>404</h1>
|
|
<p>No such page. <a href="/">Back to the index.</a></p>
|
|
{% endblock content %}
|