mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-23 18:11:09 +00:00
Error and 404 pages
This commit is contained in:
parent
9994bdc81e
commit
ada6a79b1c
2 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||||
|
|
||||||
|
|
|
@ -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>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue