src/hdalab/templates/404.html
author ymh <ymh.work@gmail.com>
Fri, 20 Mar 2015 00:04:28 +0100
changeset 564 1df39ecb3da0
parent 546 0ca66b267d15
permissions -rw-r--r--
Added tag V03.00-rc.06 for changeset e25de27cba8c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
546
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
{% extends "base.html" %}
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
{% load i18n %}
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
{% load static %}
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
{% block title %}{{block.super}} &gt; {% trans 'Page not found' %}{% endblock %}
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
{% block css_import %}
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
{{block.super}}
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
        <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/index.css' %}" />
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
{% endblock %}
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
{% block main_content %}
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
    <div class="all-title">
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
        <h1>{% trans 'Page not found' %}</h1>
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
    </div>
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
    <div class="description">
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
        <p>{% trans 'Sorry, but the requested page could not be found.' %}</p>
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
    </div>
0ca66b267d15 add custom 400, 500 and 404 pages
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
{% endblock %}