oops, forgot to add base.html to tree

This commit is contained in:
sanj 2010-08-02 03:24:12 +05:30
parent 81606986e8
commit 0ef7ee5d29

15
itf/templates/base.html Normal file
View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="/static/js/jquery.js"></script>
{% block head %}
{% endblock %}
</head>
<body>
<div id="wrapper">
{% block body %}
{% endblock %}
</div>
</body>
</html>