-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhome.html
executable file
·42 lines (39 loc) · 1.37 KB
/
home.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>
<!-- Font-Awesome -->
<link rel="stylesheet" href="styles/font-awesome/css/font-awesome.min.css">
<!-- JQuery -->
<script src="scripts/jquery/jquery-2.1.3.min.js"></script>
<!-- Controllers -->
<script src="scripts/controllers/main.js"></script>
<!-- Styling -->
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<div class="popup">
<div class="header">
<div class="logo">
<img src="images/logo.png">
</div>
<a href="" id="toggle" title="Turn Redirection On/Off">
<div class="power">
<span id="power" class="fa fa-power-off"></span>
</div>
</a>
</div>
<div class="content">
<div class="redirections">
<h1>Since Install</h1>
<h2><span id="count"></span> Redirections</h2>
</div>
<div class="links">
<a class="homepage" href="https://redirection.conorhughes.me" target="_blank"><i class="fa fa-globe"></i></a>
<a class="github" href="https://github.com/ThatGuyHughesy/Redirection" target="_blank"><i class="fa fa-github"></i></a>
<br>
</div>
<h3 class="version">Version <span id="version"></span></h3>
</div>
</div>
</body>
</html>