diff options
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/404.html | 14 | ||||
-rw-r--r-- | hyperkitty/templates/500.html | 14 |
2 files changed, 14 insertions, 14 deletions
diff --git a/hyperkitty/templates/404.html b/hyperkitty/templates/404.html index dbc98cb..6f321aa 100644 --- a/hyperkitty/templates/404.html +++ b/hyperkitty/templates/404.html @@ -1,6 +1,6 @@ {% extends "base.html" %} {% load i18n %} -{% block content %} +{% block content %} <style> #contentBox { @@ -8,7 +8,7 @@ font-family: 'Times New Roman'; font-size:20px; color:#444; - margin-left:300px; + margin-left:300px; margin-top:100px; } .hello @@ -27,11 +27,11 @@ <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> + <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> + I can't find this page. + <a href ="{% url root %}">Back home</a> </div> </div> - -{% endblock %}
\ No newline at end of file + +{% endblock %} diff --git a/hyperkitty/templates/500.html b/hyperkitty/templates/500.html index 6c156d7..3932daf 100644 --- a/hyperkitty/templates/500.html +++ b/hyperkitty/templates/500.html @@ -1,6 +1,6 @@ {% extends "base.html" %} {% load i18n %} -{% block content %} +{% block content %} <style> #contentBox { @@ -8,7 +8,7 @@ font-family: 'Times New Roman'; font-size:20px; color:#444; - margin-left:300px; + margin-left:300px; margin-top:100px; } .hello @@ -27,11 +27,11 @@ <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> + <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> + There's been an error somewhere, sorry. + <a href ="{% url root %}">Back home</a> </div> </div> - -{% endblock %}
\ No newline at end of file + +{% endblock %} |