summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/404.html
blob: e4ff067b58606fd8e63dc849287a367afd9cac45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{% extends "base.html" %}
{% load url from future %}
{% load i18n %}
{% block content %}
        <style>
            #contentBox
            {
                padding:10px;
                font-family: 'Times New Roman';
                font-size:20px;
                color:#444;
                margin-left:300px;
                margin-top:100px;
            }
            .hello
            {
                font-size:100px;
                color:#444;
                font-family: 'Times New Roman';
            }
            a
            {
                color:#323232;
            }
        </style>

        <div style="margin: 60px 40px 0 40px;">
            <div id="contentBox" style="width:50%; ">
                <span class="hello"> 404 </span>
                <br/><br/>
                <span style="font-size:60px; color:#444;font-family: 'Times New Roman';"> Oh! Snap </span> 
                <br/><br/>
                I can't find this page.
                <a href ="{% url 'root' %}">Back home</a>
            </div>
        </div>

{% endblock %}