summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hyperkitty/templates/500.html43
1 files changed, 0 insertions, 43 deletions
diff --git a/hyperkitty/templates/500.html b/hyperkitty/templates/500.html
deleted file mode 100644
index d1ca064..0000000
--- a/hyperkitty/templates/500.html
+++ /dev/null
@@ -1,43 +0,0 @@
-{% extends "base.html" %}
-{% load url from future %}
-{% 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 %}