summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/500.html
blob: a2b3d13e83bb4f7b883235cb3aaa3a471d123ddc (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
39
40
41
42
43
44
{% extends "base.html" %}
{% load i18n %}

{% block title %}
Error ! - {{ app_name|title }}
{% endblock %}

{% 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"> 500 </span>
				<br/><br/>
				<span style="font-size:60px; color:#444;font-family: 'Times New Roman';"> Oh! Snap </span>
				<br/><br/>
				There's been an error somewhere, sorry.
				<a href ="{% url root %}">Back home</a>
			</div>
		</div>

{% endblock %}

{# vim: set noet: #}