summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/404.html
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-06-12 19:34:38 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-06-12 19:34:38 +0200
commita195f1b150d2b17cdefd64038528b53035d585f7 (patch)
tree24631dfe458c691636dd9e4c37b5c104c120ff80 /hyperkitty/templates/404.html
parente5c785c29f2af0f9978814f7a34132388c44045d (diff)
downloadhyperkitty-a195f1b150d2b17cdefd64038528b53035d585f7.tar.gz
hyperkitty-a195f1b150d2b17cdefd64038528b53035d585f7.tar.xz
hyperkitty-a195f1b150d2b17cdefd64038528b53035d585f7.zip
Use spaces instead of tabs in the templates
Diffstat (limited to 'hyperkitty/templates/404.html')
-rw-r--r--hyperkitty/templates/404.html64
1 files changed, 31 insertions, 33 deletions
diff --git a/hyperkitty/templates/404.html b/hyperkitty/templates/404.html
index 232ca97..e4ff067 100644
--- a/hyperkitty/templates/404.html
+++ b/hyperkitty/templates/404.html
@@ -2,39 +2,37 @@
{% 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>
+ <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>
+ <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 %}
-
-{# vim: set noet: #}