-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
57 lines (55 loc) · 1.66 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
<!--
index.html
altsource-viewer (https://github.com/therealFoxster/altsource-viewer)
Copyright (c) 2023 Foxster.
MIT License.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./common/style.css">
<link rel="stylesheet" href="index.css">
<title>AltSource Viewer</title>
</head>
<body class="loading">
<div id="loading">
<img src="./common/assets/img/loading.gif" alt="loading">
<p>Loading</p>
</div>
<div id="top">
<div id="nav-bar" class="hide-border">
<a href="https://github.com/therealFoxster/altsource-viewer" class="hidden">
<i class="bi bi-github" style="font-size: 1.375rem;"></i>
</a>
<div id="title" class="hidden">
<p>AltSource Viewer</p>
</div>
<a href="https://github.com/therealFoxster/altsource-viewer" id="source-code">
<i class="bi bi-github" style="font-size: 1.375rem;"></i>
</a>
</div>
</div>
<div id="main">
<h1 id="title">AltSource Viewer</h1>
<div class="textfield">
<input type="url" placeholder="Source URL">
<a id="go">Go</a>
</div>
<div id="suggestions" class="section">
<div class="header">
<h2>Featured</h2>
</div>
<!-- <a href="https://github.com/therealFoxster/altsource-viewer" target="_blank">
<div class="suggestion" id="source-code">
<i class="bi bi-code-slash"></i>
Source Code
</div>
</a> -->
</div>
</div>
<script src="index.js" type="module"></script>
</body>
</html>