11 lines
283 B
HTML
11 lines
283 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Not Found - {{ config.title }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<article class="not-found">
|
|
<h1>404</h1>
|
|
<p>Page not found.</p>
|
|
<p><a href="{{ get_url(path='/') }}">Return home</a></p>
|
|
</article>
|
|
{% endblock content %}
|