templates/base.html
author nishanth
Thu, 22 Apr 2010 06:23:53 +0530
changeset 49 3643f59f141e
parent 19 4911302379ac
child 52 adab2d07981a
permissions -rw-r--r--
added questions from day2 quiz1

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