it/itf/templates/base.html

18 lines
400 B
HTML
Raw Normal View History

2010-08-01 21:54:12 +00:00
<!DOCTYPE html>
<html>
<head>
2010-08-29 22:04:56 +00:00
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
2010-08-01 21:54:12 +00:00
<script type="text/javascript" src="/static/js/jquery.js"></script>
2010-08-29 17:39:42 +00:00
<link rel="shortcut icon" href="/static/images/favicon.ico" />
2010-08-01 21:54:12 +00:00
{% block head %}
{% endblock %}
</head>
<body>
<div id="wrapper">
{% block body %}
{% endblock %}
</div>
</body>
</html>