--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hdalab/templates/404.html Thu Mar 19 16:05:51 2015 +0100
@@ -0,0 +1,20 @@
+{% extends "base.html" %}
+{% load i18n %}
+{% load static %}
+
+
+{% block title %}{{block.super}} > {% trans 'Page not found' %}{% endblock %}
+
+{% block css_import %}
+{{block.super}}
+ <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/index.css' %}" />
+{% endblock %}
+
+{% block main_content %}
+ <div class="all-title">
+ <h1>{% trans 'Page not found' %}</h1>
+ </div>
+ <div class="description">
+ <p>{% trans 'Sorry, but the requested page could not be found.' %}</p>
+ </div>
+{% endblock %}
\ No newline at end of file