12 lines
No EOL
284 B
HTML
12 lines
No EOL
284 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}404{% endblock %}
|
|
|
|
{% block container %}container{% endblock %}
|
|
|
|
{% block page %}
|
|
<h1>404: Not Found</h1>
|
|
<p>Sorry! What you were looking for can't be found here.</p>
|
|
|
|
<a role="button" href="{{ url }}">Go Home</a>
|
|
{% endblock %} |