Fixes error pages
This commit is contained in:
11
bookwyrm/templates/404.html
Normal file
11
bookwyrm/templates/404.html
Normal file
@ -0,0 +1,11 @@
|
||||
{% extends 'layout.html' %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}{% trans "Not Found" %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="block">
|
||||
<h1 class="title">{% trans "Not Found" %}</h1>
|
||||
<p>{% trans "The page you requested doesn't seem to exist!" %}</p>
|
||||
</div>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user