realms-wiki/realms/templates/errors/404.html

10 lines
165 B
HTML
Raw Normal View History

2013-10-03 17:58:07 +03:00
{% extends 'layout.html' %}
{% block body %}
2014-09-05 00:35:28 +03:00
<h1>Page Not Found</h1>
{% if error is defined %}
<h4>{{ error.description }}</h4>
{% endif %}
2013-10-03 17:58:07 +03:00
{% endblock %}