-
Notifications
You must be signed in to change notification settings - Fork 0
/
startpage.html
63 lines (61 loc) · 2.25 KB
/
startpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="noindex">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/startpage/css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap"
rel="stylesheet"
/>
<title>appolon.dev</title>
<link rel="shortcut icon" href="https://appolon.dev/api/download/appolonicon.ico" type="image/x-icon">
</head>
<body>
<div class="wrapper">
<div class="bg"></div>
<div class="maincard">
<div class="search">
<form action="https://www.google.com/search" target="_blank">
<label for="q" autofocus>> search / </label>
<input
type="text"
name="q"
autocomplete="off"
autofocus
/>
</form>
</div>
<div class="content">
<div class="image">
<img src="https://appolon.dev/api/download/redsky.jpg" alt="No image" />
</div>
<div id="links" class="links">
<section>
<ul>
<li><a href="https://www.youtube.com/" target="_blank">Youtube</a></li>
<li><a href="https://github.com/" target="_blank">Github</a></li>
</ul>
</section>
<section>
<ul>
<li><a href="https://appolon.dev/" target="_blank">Appolon.dev</a></li>
<li><a href="https://status.appolon.dev/" target="_blank">Status</a></li>
<li><a href="http://192.168.0.40:4449/" target="_blank">MystNode</a></li>
</ul>
</section>
<section>
<ul>
<li><a href="https://appolon.dev/api/downloads/" target="_blank">Downloads</a></li>
<li><a href="https://appolon.dev/api/uploads/" target="_blank">Upload</a></li>
</ul>
</section>
</div>
</div>
</div>
</div>
</body>
</html>
<!-- based on github.com/jnmcfly/awesome-startpage -->