Use correct heading class and better wording on error pages

This commit is contained in:
Chris Hill-Scott
2016-01-14 14:25:38 +00:00
parent 54b66c5947
commit 56f82b4491
2 changed files with 10 additions and 4 deletions
+6 -2
View File
@@ -3,8 +3,12 @@
{% block fullwidth_content %} {% block fullwidth_content %}
<div class="grid-row"> <div class="grid-row">
<div class="column-two-thirds"> <div class="column-two-thirds">
<h1>404</h1> <h1 class="heading-xlarge">
<p>Sorry, that page doesn't exist.</p> Page could not be found
</h1>
<p>
Check you've entered the correct web address.
</p>
</div> </div>
</div> </div>
{% endblock %} {% endblock %}
+4 -2
View File
@@ -3,8 +3,10 @@
{% block fullwidth_content %} {% block fullwidth_content %}
<div class="grid-row"> <div class="grid-row">
<div class="column-two-thirds"> <div class="column-two-thirds">
<h1>500</h1> <h1 class="heading-xlarge">
<p>Sorry, something went wrong on our system.</p> Sorry, we're experiencing technical difficulties
</h1>
<p>Try again later.</p>
</div> </div>
</div> </div>
{% endblock %} {% endblock %}