summaryrefslogtreecommitdiff
path: root/testapp/templates/base.html
blob: c2bbabb6b61b73cbb4c1cef826bc7f473189f5bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title>
{% block title %}
{% endblock %}
</title>
{% block meta %}
{% endblock %}
<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/base.css" type="text/css" />
{% block css %}
{% endblock %}
{% block script %}
{% endblock %}
</head>

<body {% block onload %}{% endblock %}>
    <div class=box>
{% block content %}
{% endblock %}
    </div>
</body>
</html>