templates/base.html
author nishanth
Wed, 30 Jun 2010 10:50:49 +0530
changeset 75 f7ee769f0d95
parent 52 adab2d07981a
permissions -rw-r--r--
all the admin key checking is now done via urls

<html>
<head>
<title>
{% block title %}
{% endblock %}
</title>
{% block script %}
{% endblock %}
</head>
<body{% block onload %}{% endblock %}>
{% block content %}
{% endblock %}
</body>
</html>