-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
62 lines (47 loc) · 2.48 KB
/
base.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1.0" />
<title>DIY Hue Light</title>
<link href="style.css" rel="stylesheet">
<link rel="stylesheet" href="bootstrap-4.6.0-dist/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="fontawesome-free-5.15.1-web/css/fontawesome.min.css">
<link rel="stylesheet" href="fontawesome-free-5.15.1-web/css/all.min.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="bootstrap-4.6.0-dist/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
<div class="flexContainer">
<div class="sidebar">
<ul>
<li class="iconBox"><img src="images/logo.svg"></li>
<a href="#home"><li><i class="fas fa-home" style="color: #0092FF"></i>Home</li></a>
<a href="#bridge"><li><i class="fas fa-cube" style="color: #FF9E00"></i>Bridge</li></a>
<a href="#devices"><li><i class="fas fa-braille" style="color: #764600"></i>Devices</li></a>
<a href="#deconz"><li><i class="fab fa-dyalog" style="color: #42A138"></i>Deconz</li></a>
<a href="#MQTT"><li><i class="fas fa-cube" style="color: #0084FF"></i>MQTT</li></a>
<a href="#alerts"><li><i class="fas fa-exclamation-triangle" style="color: #AE2D00"></i>Alerts</li></a>
<a href="#settings"><li><i class="fas fa-cog" style="color: #8B00FF"></i>Settings</li></a>
<a href="#logout"><li><i class="fas fa-sign-out-alt" style="color: #fff"></i>Logout</li></a>
</ul>
</div>
<div class="content">
<div class="topbar">
<button type="button" id="sidebarCollapse" class="menuToggle">
<i class="fas fa-bars"></i>
<span></span>
</button>
</div>
</div>
</div>
</body>
</html>