Error and 404 pages

This commit is contained in:
Mouse Reeve 2020-09-30 15:04:57 -07:00
parent 9994bdc81e
commit ada6a79b1c
2 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,8 @@
{% extends 'layout.html' %} {% extends 'layout.html' %}
{% block content %} {% block content %}
<div class="content-container"> <div class="block">
<h2>Server Error</h2> <h2 class="title">Server Error</h2>
<p>Something went wrong! Sorry about that.</p> <p>Something went wrong! Sorry about that.</p>
</div> </div>

View file

@ -1,8 +1,8 @@
{% extends 'layout.html' %} {% extends 'layout.html' %}
{% block content %} {% block content %}
<div class="content-container"> <div class="block">
<h2>Not Found</h2> <h2 class="title">Not Found</h2>
<p>The page your requested doesn't seem to exist!</p> <p>The page your requested doesn't seem to exist!</p>
</div> </div>