diff options
| author | josh ott <josh@ottmail.me> | 2026-04-29 19:55:10 -0400 |
|---|---|---|
| committer | josh ott <josh@ottmail.me> | 2026-04-29 19:55:10 -0400 |
| commit | e8878d09c96dddb81bdfc75125ab0d868dabb433 (patch) | |
| tree | 86203d6e8203745e1d62b25b370c0a15ee7c886d /index.html | |
| download | home-e8878d09c96dddb81bdfc75125ab0d868dabb433.tar.gz home-e8878d09c96dddb81bdfc75125ab0d868dabb433.zip | |
first commit
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..db5016c --- /dev/null +++ b/index.html @@ -0,0 +1,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> |