templates/base.html
author nishanth
Fri, 02 Jul 2010 14:12:25 +0530
changeset 87 e81b105b1128
parent 52 adab2d07981a
permissions -rw-r--r--
found easier way to get things done. so removed all the junk code.

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