templates/base.html
author nishanth
Thu, 01 Jul 2010 16:01:48 +0530
changeset 78 2264a51fc9cf
parent 52 adab2d07981a
permissions -rw-r--r--
created the view to display questions

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