Old version

This commit is contained in:
tryashtar
2026-03-18 11:03:48 -06:00
commit 1860b9dff3
2 changed files with 42 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Trystan's Website</title>
<link rel="stylesheet" href="style.css"/>
<script>
function setLinks() {
//document.getElementById("jellyfin-link").href = window.location.protocol + "//" + window.location.hostname + ":8096";
//document.getElementById("copyparty-link").href = window.location.protocol + "//" + window.location.hostname + ":3923";
}
</script>
</head>
<body onload="setLinks()">
<h1>Trystan's Website</h1>
<h2>Services</h2>
<ul>
<li><a id="jellyfin-link" href="https://jellyfin.trystkelly.com">Jellyfin</a></li>
<li><a id="copyparty-link" href="https://copyparty.trystkelly.com">Copyparty</a></li>
</ul>
<h2>Archives</h2>
<ul>
<li><a href="bitf/web/index.html">Brawl in the Family</a></li>
<li><a href="reddit/index.html">Reddit</a></li>
<li><a href="mojira/render/index.html">Mojira</a></li>
<li><a href="marketplace/web/index.html">Minecraft Marketplace</a></li>
</ul>
</body>
</html>
+12
View File
@@ -0,0 +1,12 @@
body {
font-family: sans-serif;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}