moviewyrm/bookwyrm/templates/notfound.html
2021-03-03 20:08:42 -06:00

12 lines
285 B
HTML

{% 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 %}