mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-20 18:23:41 -05:00
46 lines
1.5 KiB
HTML
46 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>MilkNet</title>
|
|
<link rel="icon" type="image/png" href="/assets/img/milk.png"/>
|
|
<style>body{max-width:1000px;margin:auto;background-color:black;color:white;font-family:Arial;}a{color:#05d5ff}</style>
|
|
<style>
|
|
img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
.center-text {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
let savedLink = localStorage.getItem("savedLink");
|
|
|
|
document.addEventListener("keydown", function(event) {
|
|
if (event.key === ",") {
|
|
if (!savedLink) {
|
|
savedLink = prompt("Escape to: https://YOURLINK.tld");
|
|
if (savedLink) {
|
|
localStorage.setItem("savedLink", savedLink);
|
|
}
|
|
} else {
|
|
window.open(savedLink, "_blank");
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<img src="/assets/img/milk_optimized.png" class="center">
|
|
<h1 class="center-text">MilkNet</h1>
|
|
<p class="center-text">Paradise for bored students. What would you like to do? (Press , to escape)</p>
|
|
|
|
<div class="center-text">
|
|
<a href="/games">Games</a> • <a href="/apps">Apps</a> • <a href="/links.txt">Links</a> • <a href="/form">Requests</a> • <a href="/gba">Retro Games</a>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
</head>
|