-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
49 lines (49 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="static/js/lib/bootstrap-4.3.1.min.js"></script>
<link href="static/css/lib/bootstrap-4.3.1.min.css" type="text/css" rel="stylesheet">
<link href="static/css/style.css" type="text/css" rel="stylesheet">
<link rel="icon" type="image/png" href="https://droxey.com/static/images/site/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="https://droxey.com/static/images/site/favicon-16x16.png" sizes="16x16">
<title>💡 Lite Brite</title>
</head>
<body>
<div class="container-fluid" style="width: 1255px; margin-top: 19px;">
<div class="row">
<div class="col-8">
<h2>💡 write code; illuminate LEDs below!</small>
<button type="button" class="btn btn-lg btn-info float-right">
<a class="" title="Play Now" href="https://repl.it/@droxey/litebrite-client?ref=button"
target="_blank">Try Now</a>
</button>
</h2>
<section id="grid"></section>
</div>
<div class="col-4">
<h2 class="text-right">👥 updates ↴</h2>
<section id="feed">
<div id="updates"></div>
</section>
</div>
</div>
<div class="row">
<div class="col-8">
<p id="footer" class="text-center">
<small>written with ♥ by <a href="https://github.com/droxey" title"@droxey on github"
class="text-info"><strong>@droxey</strong></a></small>
</p>
</div>
</div>
</div>
<script src="static/js/lib/pusher.js"></script>
<script src="static/js/lib/jquery-3.3.1.slim.min.js"></script>
<script src="static/js/lib/d3.min.js"></script>
<script src="static/js/lib/lodash.js"></script>
<script src="static/js/lib/randomColor.js"></script>
<script src="static/js/board.js"></script>
</body>
</html>