templates/base.html
author nishanth
Thu, 01 Jul 2010 16:44:17 +0530
changeset 84 08af9e4ada78
parent 52 adab2d07981a
permissions -rw-r--r--
modified the link in templates to the correct one and fixed a typo in view

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