templates/base.html
author nishanth
Tue, 20 Apr 2010 21:57:51 +0530
changeset 20 bcfa305cb32c
parent 19 4911302379ac
child 52 adab2d07981a
permissions -rw-r--r--
fixed a bug

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