X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/357027375ff8867f42ca34bcbfb5a78b5b185fc3..41c79d87e68ee700db66327131dbbe7947ed2158:/src/wolnelektury/templates/404.html

diff --git a/src/wolnelektury/templates/404.html b/src/wolnelektury/templates/404.html
index f3846aac4..6ec7deab6 100644
--- a/src/wolnelektury/templates/404.html
+++ b/src/wolnelektury/templates/404.html
@@ -1,19 +1,21 @@
-{% extends "base.html" %}
+{% extends "base_simple.html" %}
 {% load i18n %}
 
+{% block settings %}
+  {% load title %}
+  {% trans "Strona nie istnieje" as title %}
+  {% title title %}
+{% endblock %}
 
-{% block titleextra %}404 - {% trans "Page does not exist" %}{% endblock %}
 
-
-{% block body %}
-
-<h1>{% trans "Page not found" %}</h1>
-
-
-<p class="normal-text">
-{% trans "We are sorry, but this page does not exist. Please check if you entered correct address or go to "%} <a href="/">{% trans "main page" %}</a>.
-</p>
+{% block titleextra %}404 – {% trans "Strona nie istnieje" %}{% endblock %}
 
 
+{% block body %}
+  <h1>{% trans "Strona nie istnieje" %}</h1>
 
+  <p class="normal-text">
+    {% trans "Przepraszamy, ale ta strona nie istnieje. Sprawdź, czy podany adres jest właściwy, lub przejdź do"%}
+    <a href="/">{% trans "strony głównej" %}</a>.
+  </p>
 {% endblock body %}