-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
77 lines (77 loc) · 2.96 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
<!-- DO NOT CHANGE ANYTHING BELOW UNLES YOU KNOW WHAT YOU ARE DOING -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>KFloorP - Kindle Floorplan Panel for Home Assistant</title>
<meta http-equiv="cache-control" content="no-cache, must-revalidate, post-check=0, pre-check=0" />
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<script src="./js/setup.js"></script>
<script src="./js/main.js"></script>
<link rel="stylesheet" href="./css/common-style.css" />
</head>
<body onload="startup(1)">
<div id="wrapper">
<!-- HEADER START -->
<div id="header">
<div id="logo">
<span style="font-size: 30px">KFloorP</span><br />
<span style="font-size: 23px">HASS</span><br />
<span style="font-size: 30px" id="clock"></span><br />
</div>
<div id="main-menu">
<a href="index.html">
<div class="main-menu-item" id="menu1">
<script>document.write(floorplanIcon);</script><br />
1st Floor
</div>
</a>
<a href="2ndfloor.html">
<div class="main-menu-item" id="menu2">
<script>document.write(floorplanIcon);</script><br />
2nd Floor
</div>
</a>
<a href="switches.html">
<div class="main-menu-item" id="menu3">
<script>document.write(switchesIcon);</script><br />
Switches
</div>
</a>
<a href="lights.html">
<div class="main-menu-item" id="menu4">
<script>document.write(lightOnIcon);</script><br />
Lights
</div>
</a>
<a href="automations.html">
<div class="main-menu-item" id="menu5">
<script>document.write(automationOnIcon);</script><br />
Automations
</div>
</a>
<a href="players.html">
<div class="main-menu-item" id="menu6">
<script>document.write(playIcon);</script><br />
Players
</div>
</a>
</div>
</div>
<!-- HEADER END -->
<!-- FLOORPLAN START -->
<div id="floorplan">
<img src="" class="floorplanImg" id="floorplanImg" alt="floorplanImg" />
</div>
<!-- FLOORPLAN END -->
<!-- CONTENT START -->
<div id="content">
</div>
<!-- CONTENT END -->
</div>
<!-- /wrapper -->
</body>
</html>