comparison templates/404.html @ 24:2e7226e90157

Many fixes. See detailed description. - Style errors - Writer proper 404 and 500 templates - Make login page redirect back to page being viewed (still buggy?) - Provide a brief blurb about Agora - Use tables for registration and login forms (need to be styled) - Fix typos, grammatical errors. - Don't use .djhtml extension for some templates
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Mon, 28 Jun 2010 03:00:01 -0500
parents 013cf0aa49b7
children e019ca8e14f6
comparison
equal deleted inserted replaced
23:d9658d30b814 24:2e7226e90157
1 <html> 1 {% extends "controls.djhtml" %}
2 <head> 2 {% block title %}
3 <title>Quoth the server...</title> 3 Object not found
4 </head> 4 {% endblock %}
5 <body> 5 {% block content %}
6 <div class="whitebox">
6 <p> 7 <p>
7 404! 8 The resource you were looking for is unavailable. If you think this
9 is our fault, please let us know.
8 </p> 10 </p>
9 </body> 11 </div>
10 </html> 12 {% endblock %}