X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/20d46221c322ee9165596246639c8b897a06d120..5874cc9204de5b6ef2838723293c9a8027d3a849:/wolnelektury/templates/404.html diff --git a/wolnelektury/templates/404.html b/wolnelektury/templates/404.html index 288e050ed..f3846aac4 100644 --- a/wolnelektury/templates/404.html +++ b/wolnelektury/templates/404.html @@ -1,27 +1,19 @@ +{% extends "base.html" %} {% load i18n %} -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" lang="pl" xml:lang="pl"> -<head> -<title>404 - {% trans "Site does not exist" %} - WolneLektury.pl</title> -<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> -<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.5.2/build/reset/reset-min.css"> -<link rel="stylesheet" href="/static/css/error.css" type="text/css" /> -</head> - -<body> - -<a href="/"><img src="/static/img/logo.png" /></a> -<p class="haj" style="font-weight: bold">{% trans "Site does not exist" %}</p> -<p> -{% trans "We are sorry, but this site does not exist. Please check if you entered correct address or go to "%} <a href="/">{% trans "main page" %}</a>. + + +{% 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> -<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> -</script> -<script type="text/javascript"> - _uacct = "UA-2576694-1"; - urchinTracker(); -</script> -</body> -</html> \ No newline at end of file + + +{% endblock body %}