This repository has been archived by the owner on Oct 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·61 lines (44 loc) · 2.37 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html id='content'>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>Haplotype Reconstruction</title>
<!-- Monospace font for cross-browser Haplotypes -->
<link rel="stylesheet" type="text/css" href="public_assets/styles/fonts.css">
<!-- STYLE -->
<link rel="stylesheet" type="text/css" href="public_assets/styles/mainpage.css" >
<link rel="stylesheet" type="text/css" href="public_assets/styles/settings.css" >
<link rel="stylesheet" type="text/css" href="public_assets/styles/main.css" >
<link rel="stylesheet" type="text/css" href="public_assets/styles/filebox.css" >
<link rel="stylesheet" type="text/css" href="public_assets/styles/tooltip.css" >
<link rel="stylesheet" type="text/css" href="public_assets/styles/tutorial.css" >
<link rel="stylesheet" type="text/css" href="public_assets/styles/buttontutorial.css" >
</head>
<body onresize="Resize.resizeCanvas()" >
<!-- Background -->
<div id='modal_bg' ></div>
<!-- User Options -->
<script src="HTML/elements/useropts.html" ></script>
<!-- Settings -->
<script src="HTML/elements/settings.html" ></script>
<!-- Different File Uploads -->
<script src="HTML/elements/uploadfileforms.html"></script>
<!-- Main Page -->
<script src="HTML/elements/mainpage.html"></script>
<!-- Selection / General Buttons -->
<script src="HTML/elements/modespecificbuttons.html"></script>
<!-- Status Bar and Message Properties -->
<script src="HTML/elements/status_and_message.html"></script>
<!-- Family and Person Dialogs -->
<script src="HTML/elements/dialog_famperc.html" ></script>
<!-- Homology Buttons -->
<script src="HTML/elements/homologybuttons.html"></script>
<!-- Marker Range -->
<script src="HTML/elements/markerrange.html" ></script>
<div id='container' ><!-- KineticJS creates a canvas for each layer, so no need --></div>
<!-- CODE GOES HERE -->
<script src="HTML/code_includes.html" ></script>
</body>
</html>
<!-- Loading everything as document.write scripts introduces a window.load delay of about 1 second. -->