-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (35 loc) · 1.17 KB
/
index.html
File metadata and controls
47 lines (35 loc) · 1.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/global/icons/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BA-Prototyp</title>
</head>
<body>
<!-- A top-bar that bundels multiple menu icons: Left: sidebar, Right: -->
<div id="sidebar-container">
<div id="sidebar-icon"></div>
<div id="sidebar"></div>
<div id="graph-info" class="info-icon"></div>
</div>
<div id="graph"></div>
<!-- For the view on the right side -->
<div id="view">
<div class="info">
<div id="node-icon"></div>
<div id="node-name">Knoten</div>
<!-- <div id="course-icon"></div> -->
<div id="course-name">in Kurs:</div>
<div id="resources"> Resourcen:
<div id="resource-container"></div>
</div>
</div>
<div>Lernpfad:</div>
<div class="path" id="path"> </div>
<div id="path-info" class="info-icon"></div>
<!-- <div id="eval">Eval</div> -->
</div>
<script type="module" src="/src/page2/main.ts"></script>
</body>
</html>