-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
25 lines (23 loc) · 828 Bytes
/
index.html
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
<html>
<head>
<script>
// flask parameter: change it to unique, to not let browser cache the file
path = "{{ unique_url_for_PATH(path) }}"
</script>
<frameset rows = "7%, *" border="1">
<frame name = "title" sandbox="allow-top-navigation" src="src/title.html" noresize="noresize">
<frameset id="horizontal" cols="57%, *">
<frameset rows="76%, *">
<frameset cols="13%, *">
<frame name="controls" src="src/controls.html" noresize="noresize">
<frame name="tree" src="src/tree.html">
</frameset>
<frame name = "chain" src="src/chain.html">
</frameset>
<frame name = "choices" src="src/choices.html">
</frameset>
</frameset>
</head>
<body>
</body>
</html>