blob: db5016c26933d607b7dba0b7dabe2a8d3b974396 (
plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>home</title>
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="stylesheet" href="/styles.css" />
<style>
a {
display: flex;
align-items: center;
cursor: pointer;
text-decoration: none;
margin: 2px 0 2px 0;
font-size: 15pt;
}
.icon { width: 32px; height: 32px; margin: 0 10px 0 10px; border-radius: 5px; }
#joshott { color: var(--rosewater) }
#nextcloud { color: var(--sapphire) }
#immich { color: var(--pink) }
#git { color: var(--peach) }
#slskd { color: var(--blue) }
#betanin { color: var(--red) }
#navidrome { color: var(--blue) }
#supernote { color: var(--text) }
#stirling { color: var(--red) }
#kiwix { color: var(--text) }
</style>
</head>
<body>
<div style="display:flex;">
<div class="title">
<h1><i>home</i></h1>
</div>
</div>
<table>
<tr> <td>
<a href="https://joshott.net" id="joshott">
<img class="icon" src="icons/joshott.svg">
joshott.net
</a>
</td> </tr>
<tr> <td>
<a href="https://cloud.joshott.net" id="nextcloud">
<img class="icon" src="icons/nextcloud.svg">
nextcloud
</a>
</td> </tr>
<tr> <td>
<a href="https://photos.joshott.net" id="immich">
<img class="icon" src="icons/immich.svg">
immich
</a>
</td> </tr>
<tr> <td>
<a href="http://192.168.2.1:3001" id="git">
<img class="icon" src="icons/git.svg">
git
</a>
</td> </tr>
<tr> <td>
<a href="http://192.168.2.1:5030" id="slskd">
<img class="icon" src="icons/slskd.svg">
slskd
</a>
</td> </tr>
<tr> <td>
<a href="http://192.168.2.1:9393" id="betanin">
<img class="icon" src="icons/betanin.png">
betanin
</a>
</td> </tr>
<tr> <td>
<a href="http://192.168.2.1:4533" id="navidrome">
<img class="icon" src="icons/navidrome.png">
navidrome
</a>
</td> </tr>
<tr> <td>
<a href="http://192.168.2.1:19072" id="supernote">
<img class="icon" src="icons/supernote.png">
supernote
</a>
</td> </tr>
<tr> <td>
<a href="http://192.168.2.1:8086" id="stirling">
<img class="icon" src="icons/stirling.svg">
stirling
</a>
</td> </tr>
<tr> <td>
<a href="http://192.168.2.1:8085" id="kiwix">
<img class="icon" src="icons/kiwix.svg">
kiwix
</a>
</td> </tr>
</table>
</body>
</html>
|