-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (61 loc) · 2.5 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
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="theme-color" content="#333" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EasyHome | Home automation and ambient lighting</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.0/components/reset.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.0/components/container.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.0/components/grid.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.0/components/image.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.0/components/menu.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body class="calm-bg">
<header>
<div class="logo">
<img src="easyhome-logo.png" alt="EasyHome Logo" width="100px" height="100px">
</div>
<h1 id="main-header-title">EasyHome</h1>
<p class="desc">Home automation and ambient lighting dashboard for Arduino and ESP modules.</p>
<div id="mcu-config">
<input type="text" placeholder="192.168.1.1" id="mcuip" title="NodeMCU IP">
<button>Connect to Controller</button>
</div>
<br />
</header>
<div class="ui container" id="device-dashboard">
<h2>Devices</h2>
<div class="ui four column doubling grid" id="device-list">
{% include devicelist.html %}
</div>
<h2>Ambient Lighting</h2>
<div class="ui three flat item menu" id="effects-list">
<a class="item" data-effect="flat">Flat</a>
<a class="item" data-effect="roll">Roll</a>
<a class="item" data-effect="snake">Snake</a>
</div>
<br/>
<div class="ui eight column doubling grid" id="color-list">
{% include colorlist.html %}
</div>
</div> <!-- Container -->
<footer>
<p class="copyright">Made with love in <a href="http://www.guyswhocode.com/lab">GWC labs.</a></p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="script.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-88928746-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-88928746-1');
</script>
</body>
</html>