forked from dudeofea/github-feed-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·42 lines (42 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HackED</title>
<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="dep.min.js"></script>
<!-- Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=Noto+Sans:400,700' rel='stylesheet' type='text/css'>
<!-- Code Highlight -->
<link rel="stylesheet" href="hljs/github.css">
<script src="hljs/highlight.pack.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="token.js"></script>
<script src="config.js"></script>
<script src="index.js"></script>
</head>
<body>
<div class="header">
<img class="compelogo" src="CompELogoWhite.png" alt="CompELogo">
<img class="hackedlogo" src="StickerLogo@4x.png" alt="HackEDLogo">
<div class="countdown" id="countdown">
<span class="days"></span><p> :</p>
<span class="hours"></span><p> :</p>
<span class="minutes"></span><p> :</p>
<span class="seconds"></span>
</div>
</div>
<div class="commit-list" id="commits">
<div class="commit-wrapper"></div>
<div class="commit-wrapper"></div>
<div class="commit-wrapper"></div>
<div class="commit-wrapper"></div>
<div class="commit-wrapper"></div>
<div class="commit-wrapper"></div>
<div class="commit-wrapper"></div>
</div>
<div class="diff-view" id="diff-view">
</div>
</body>
</html>