Files
evestandings/standings/templates/base.html
2011-11-02 13:52:41 +00:00

14 lines
410 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
{% block head %}<title>{% block title %}{% endblock %}</title>{% endblock %}
</head>
<body>
<div class="container">
<div class="content">
{% block content %}<p>It seems something has gone wrong, please contact a admin</p>{% endblock %}
</div>
</div>
</body>
</html>