forked from mirrors/bookwyrm
10 lines
231 B
HTML
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 %}
|