Files
notifications-admin/app/templates/error/404.html
Chris Hill Scott 7ff6075e0a Fix page title on 404
Should match the `<h1>` on the page
2017-07-04 14:28:58 +01:00

15 lines
404 B
HTML

{% extends "withoutnav_template.html" %}
{% block per_page_title %}Page could not be found{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-large">
Page could not be found
</h1>
<p>
Check you've entered the correct web address.
</p>
</div>
</div>
{% endblock %}