-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
191 lines (155 loc) · 5.94 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8"/>
<title>Power Control</title>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" media="all" href="css/style.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- Adding "maximum-scale=1" fixes the Mobile Safari auto-zoom bug: http://filamentgroup.com/examples/iosScaleBug/ -->
<!-- JS -->
<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/custom.js"></script>
<script src="js/tabs.js"></script>
<script src="js/css3-mediaqueries.js"></script>
<script src="js/jquery.columnizer.min.js"></script>
<!-- Isotope -->
<script src="js/jquery.isotope.min.js"></script>
<!-- Lof slider -->
<script src="js/jquery.easing.js"></script>
<script src="js/lof-slider.js"></script>
<link rel="stylesheet" href="css/lof-slider.css" media="all" />
<!-- ENDS slider -->
<!-- Tweet -->
<link rel="stylesheet" href="css/jquery.tweet.css" media="all" />
<script src="js/tweet/jquery.tweet.js" ></script>
<!-- ENDS Tweet -->
<!-- superfish -->
<link rel="stylesheet" media="screen" href="css/superfish.css" />
<script src="js/superfish-1.4.8/js/hoverIntent.js"></script>
<script src="js/superfish-1.4.8/js/superfish.js"></script>
<script src="js/superfish-1.4.8/js/supersubs.js"></script>
<!-- ENDS superfish -->
<!-- prettyPhoto -->
<script src="js/prettyPhoto/js/jquery.prettyPhoto.js"></script>
<link rel="stylesheet" href="js/prettyPhoto/css/prettyPhoto.css" media="screen" />
<!-- ENDS prettyPhoto -->
<!-- poshytip -->
<link rel="stylesheet" href="js/poshytip-1.1/src/tip-twitter/tip-twitter.css" />
<link rel="stylesheet" href="js/poshytip-1.1/src/tip-yellowsimple/tip-yellowsimple.css" />
<script src="js/poshytip-1.1/src/jquery.poshytip.min.js"></script>
<!-- ENDS poshytip -->
<!-- JCarousel -->
<script type="text/javascript" src="js/jquery.jcarousel.min.js"></script>
<link rel="stylesheet" media="screen" href="css/carousel.css" />
<!-- ENDS JCarousel -->
<!-- GOOGLE FONTS -->
<link href='http://fonts.googleapis.com/css?family=Voltaire' rel='stylesheet' type='text/css'>
<!-- modernizr -->
<script src="js/modernizr.js"></script>
<!-- SKIN -->
<link rel="stylesheet" media="all" href="css/skin.css"/>
<!-- Less framework -->
<link rel="stylesheet" media="all" href="css/lessframework.css"/>
<!-- flexslider -->
<link rel="stylesheet" href="css/flexslider.css" >
<script src="js/jquery.flexslider.js"></script>
</head>
<body class="home">
<!-- HEADER -->
<header>
<div class="wrapper cf">
<div id="logo">
<a href="index.html"><img src="img/logo.png" alt="Simpler"></a>
</div>
<!-- SLIDER -->
</header>
<!-- ENDS HEADER -->
<!-- MAIN -->
<div class="wrapper cf">
<!-- featured -->
<ul id="filter-buttons">
<li><a href="#" data-filter="*" class="selected">Power</a></li>
</ul>
<!-- Filter container -->
<div id="filter-container" class="cf">
<figure class="web print">
<a href="" class="thumb"><img src="img/dummies/featured/01.jpg" alt="alt" /></a>
<figcaption>
<a href="" ><h3 class="heading">Nexa Switch - 1</h3></a>
<form method="POST" action="/cgi-bin/power.py">
<input type="hidden" name="device" value="0" />
<input type="hidden" name="time" value="0" />
Password: <input type="password" name="pass" />
<button name="power" value="on">Power On</button>
<button name="power" value="off">Power Off</button>
<br>
</form>
</figcaption>
</figure>
<figure class="web print">
<a href="" class="thumb"><img src="img/dummies/featured/01.jpg" alt="alt" /></a>
<figcaption>
<a href="" ><h3 class="heading">Nexa Switch - 2</h3></a>
<form method="POST" action="/cgi-bin/power.py">
<input type="hidden" name="device" value="1" />
<input type="hidden" name="time" value="0" />
Password: <input type="password" name="pass" />
<button name="power" value="on">Power On</button>
<button name="power" value="off">Power Off</button>
<br>
</form>
</figcaption>
</figure>
<figure class="web print">
<a href="" class="thumb"><img src="img/dummies/featured/01.jpg" alt="alt" /></a>
<figcaption>
<a href="" ><h3 class="heading">Nexa Switch - 3</h3></a>
<form method="POST" action="/cgi-bin/power.py">
<input type="hidden" name="device" value="2" />
<input type="hidden" name="time" value="0" />
Password: <input type="password" name="pass" />
<button name="power" value="on">Power On</button>
<button name="power" value="off">Power Off</button>
<br>
</form>
</figcaption>
</figure>
<!--TEST-->
<figure class="web print">
<a href="" class="thumb"><img src="img/dummies/featured/01.jpg" alt="alt" /></a>
<figcaption>
<a href="" ><h3 class="heading">TESTING</h3></a>
<form method="POST" action="/cgi-bin/power.py">
Device: <select name="device">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
</select>
<input type="hidden" name="device" />
<br>
Time: <input type="integer" name="time" />
<br>
Password: <input type="password" name="pass" />
<button name="power" value="on">Power On</button>
<button name="power" value="off">Power Off</button>
<br>
</form>
</figcaption>
</figure>
</div>
<!-- ENDS Filter container -->
</div>
<!-- ENDS featured -->
Foration 2014
</div><!-- ENDS WRAPPER -->
</div>
<!-- ENDS MAIN -->
<!-- FOOTER -->
<div id="main">
</div>
<!-- ENDS FOOTER -->
</body>
</html>