it/itf/templates/base.html

18 lines
400 B
HTML
Raw Normal View History

2010-08-02 03:24:12 +05:30
<!DOCTYPE html>
<html>
<head>
2010-08-30 03:34:56 +05:30
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
2010-08-02 03:24:12 +05:30
<script type="text/javascript" src="/static/js/jquery.js"></script>
2010-08-29 23:09:42 +05:30
<link rel="shortcut icon" href="/static/images/favicon.ico" />
2010-08-02 03:24:12 +05:30
{% block head %}
{% endblock %}
</head>
<body>
<div id="wrapper">
{% block body %}
{% endblock %}
</div>
</body>
</html>