-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
78 lines (70 loc) · 2.66 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; connect-src https://root-search.herokuapp.com 'unsafe-inline' 'self'; img-src 'self' 'unsafe-inline' 'unsafe-eval' *;"
/>
<meta name="theme-color" content="#ece0d1" />
<link rel="shortcut icon" href="style//resources/icons//rootsearch.png" />
<link rel="stylesheet" href="style//style.css" />
<link rel="stylesheet" href="style//animation.css" />
<script src="modules//jquery-3.4.1.min.js"></script>
<script src="script//model.js"></script>
<script src="script//view.js"></script>
<script src="script//controller.js"></script>
<script src="script//api-gateway.js"></script>
<script src="script//result-parser.js"></script>
<script src="script//node.js"></script>
<script src="script//node-map.js"></script>
<script src="script//base-view.js"></script>
<script src="script//dynamic-view.js"></script>
<script src="script//result-view.js"></script>
<script src="script//main.js"></script>
<title>Root Search</title>
</head>
<body class="dynamic-view search-mode">
<header class="dynamic-view search-mode">
<div id="title" class="dynamic-view search-mode">ROOT SEARCH</div>
<div id="sub-title-container" class="dynamic-view search-mode">
<div id="sub-title" class="dynamic-view animation-shadow">
ROOT SEARCH
</div>
</div>
</header>
<div id="search-context" class="dynamic-view search-mode">
<div id="search-container">
<input
type="text"
id="search-bar"
class="interaction-view"
placeholder="Do Search!"
/>
</div>
</div>
<div id="root-context" class="dynamic-view search-mode">
<div class="node-container root default">
<span class="effect-halo effect-halo-blink"></span>
<span class="effect-halo effect-halo-blink"></span>
<span class="node-core interaction-view">
<img class="core-image coffee-bean animation-dom" alt="" />
</span>
</div>
<div id="result-container" class="dynamic-view search-mode">
<div id="result-body" class="dynamic-view search-mode interaction-view">
<img
id="result-background"
src="./style/resources/images/root.png"
alt=""
/>
<div id="node-layer"></div>
<div id="modal-layer"></div>
</div>
</div>
</div>
<div id="overlay" class="overlay"></div>
<footer></footer>
</body>
</html>