-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomeAutomation.html
More file actions
executable file
·122 lines (88 loc) · 3.06 KB
/
homeAutomation.html
File metadata and controls
executable file
·122 lines (88 loc) · 3.06 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<head>
<title>Jarvis</title>
<style>
body
{
background:black;
}
</style>
</head>
<body>
{{renderPage}}
</body>
<template name="hello">
<h1>Hello Arpith</h1>
{{welcome}}
<input type="button" value="Click" />
</template>
<template name="os">
<div class="hero-unit" style="background:black;color:white;margin-bottom:0" >
<br/>
<br/>
<br/>
<center><h1 class="lead"> I am Jarvis </h1></center>
<br/>
<br/>
<br/>
{{> inputAutocomplete settings=settings class="lead" id="msg" style="height:40px;width:100%;font-size:1em;" class="input-xlarge" autocomplete="off" placeholder="Tell me..."}}
<button id="tellMe" class="btn btn-large btn-success">Tell me </button>
<br/>
<br/>
<br/>
<h3 class="lead" style="margin-left:1%;color:white;font-size:3em">
{{#each messages}} {{message}} {{/each}}
</h3>
<br/>
<br/>
<!--
<div class="hero-unit">
<h2 class="lead" style="color:black;margin-left:1%;"> Appliances </h2>
<div class="bs-docs-grid" style="height:100%;width:100%;margin-left:1%;color:black">
<div class="row-fluid show-grid" >
{{#each entities}}
<div class="span2" style="color:black;height:150px;position:relatvie;margin-left:0%;margin-top:5%;border:0px skyblue solid;border-radius:5px" ><center><span class="lead" style="font-size:1em;position:relative;">{{name}} </span><img src="{{icon}}" /></center></div>
{{/each}}
</div>
</div>
</div>
-->
<h4 class="lead">
</h4>
<br/>
<br/>
</div>
</template>
<template name="commandPill">
<span class="label">{{command}}</span>
</template>
<template name="roomPill">
<span class="label">{{name}}</span>
</template>
<template name="timesPill">
<span class="label">{{time}}</span>
</template>
<template name="momentPill">
<span class="label">{{name}}</span>
</template>
<template name="entitiesPill">
<span class="label">{{name}}</span>
</template>
<template name="rooms">
<div class="bs-docs-grid" style="height:100%;width:100%;margin-top:3%;margin-left:1%;color:white;">
<span class="lead" style="color:white;font-size:2em">{{time}} </span>
<div class="row-fluid show-grid" >
{{#each rooms}}
<div class="span6" style="height:250px;background:{{color}};margin-left:0%" ><center class="lead" style="margin-top:20%;"><p class="lead" style="font-size:3em;" >{{name}}</p></center></div>
<!---
<div class="span6" style="height:250px;background:#f1c40f;margin-left:0%" ><center style="margin-top:20%;">Kitchen</center></div>
<div class="span6" style="height:250px;background:#e74c37;margin-left:0" ><center style="margin-top:20%;">Bedroom</center></div>
<div class="span6" style="height:250px;background:#2ecc71;margin-left:0%" ><center style="margin-top:20%;">Living Room</center></div>
<div class="span6" style="height:250px;background:#3498db;margin-left:0" ><center style="margin-top:20%;">Study Room</center></div>
-->
{{/each}}
</div>
</div>
<h3 class="lead" style="margin-left:1%;color:white;font-size:3em"> Jarvis :
{{#each messages}} {{message}} {{/each}}
</h3>
</template>