-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 1.41 KB
/
index.html
File metadata and controls
38 lines (31 loc) · 1.41 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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>BMI Web App</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="./themes.css?v=20260309" />
<link rel="stylesheet" href="./src/dashboard/dashboard.css?v=20260309" />
<script src="./src/dashboard/dashboard.js?v=20260302" defer></script>
</head>
<body style="padding: 20px; background-color: var(--color-primary-light)">
<div class="row">
<aside class="col-3">
<div class="sidebar" style="background-color: var(--color-bg); border: 2px solid var(--color-primary);">
<div class="sidebar-title"
style="background-color: var(--color-primary); border-bottom: 1px solid var(--color-primary); ">Menü
</div>
<nav id="sidebarNav" class="nav flex-column">
<a class="nav-link active" href="#dashboard" data-page="dashboard">Dashboard</a>
<a class="nav-link" href="#formular" data-page="formular">Forms</a>
<a class="nav-link" href="#tables" data-page="tables">Tables</a>
</nav>
</div>
</aside>
<main class="col-9">
<div id="view"></div>
</main>
</div>
</body>
</html>