summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/404.html
blob: dbc98cb15cc2fcd04dd2a47a216db22a0cbb24d5 (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
{% extends "base.html" %}
{% 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/>
				This is not the page you were looking for right!
				<a href ="/">Fix This </a>
			</div>
		</div>
		
{% endblock %}