mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 05:33:40 -05:00
75 lines
2.6 KiB
HTML
75 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
|
|
crossorigin="anonymous"></script>
|
|
<title>Papa's Pastaria</title>
|
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
|
<!--Google Analytics-->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag() { dataLayer.push(arguments); }
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-M9KJ1XPKLF');
|
|
</script>
|
|
<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>
|
|
<script>
|
|
document.addEventListener('keydown', function(event) {
|
|
if (event.key === '.') {
|
|
// Change title
|
|
document.title = "Student and Parent Sign In";
|
|
|
|
// Change favicon
|
|
var link = document.querySelector("link[rel~='icon']");
|
|
if (!link) {
|
|
link = document.createElement('link');
|
|
link.rel = 'icon';
|
|
document.getElementsByTagName('head')[0].appendChild(link);
|
|
}
|
|
link.href = '/assets/img/new_favicon.ico';
|
|
}
|
|
});
|
|
</script>
|
|
<!--Google Analytics-->
|
|
<style>
|
|
html, body {
|
|
background-color: black;
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<object data="https://milk.servemp3.com/reider/storage/gxmes/papaspastaria/papaspastaria.swf" width="1000" height="800" type="application/x-shockwave-flash">
|
|
<param name="allowScriptAccess" value="always">
|
|
<param name="allowFullScreen" value="true">
|
|
</object>
|
|
</div>
|
|
</body>
|
|
</html>
|