moviewyrm/bookwyrm/templates/notfound.html
2021-02-27 18:48:10 -08:00

10 lines
231 B
HTML

{% extends 'layout.html' %}
{% load i18n %}
{% block content %}
<div class="block">
<h1 class="title">{% trans "Not Found" %}</h1>
<p>{% trans "The page your requested doesn't seem to exist!" %}</p>
</div>
{% endblock %}