Update index.html

This commit is contained in:
Voxel 2025-04-01 11:40:11 -04:00 committed by GitHub
parent eb410aea66
commit 4ca7f82470
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,40 +1,40 @@
<title>Papa's Pizzeria</title> <!DOCTYPE html>
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon"> <html>
<script> <head>
document.addEventListener("DOMContentLoaded", function() { <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3044824252307692"
let savedLink = localStorage.getItem("savedLink"); crossorigin="anonymous"></script>
<title>Papa's Pizzeria</title>
document.addEventListener("keydown", function(event) { <script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
if (event.key === ",") { <!--Google Analytics-->
if (!savedLink) { <script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
savedLink = prompt("Escape to: https://YOURLINK.tld"); <script>
if (savedLink) { window.dataLayer = window.dataLayer || [];
localStorage.setItem("savedLink", savedLink); function gtag() { dataLayer.push(arguments); }
} gtag('js', new Date());
} 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 gtag('config', 'G-M9KJ1XPKLF');
var link = document.querySelector("link[rel~='icon']"); </script>
if (!link) { <!--Google Analytics-->
link = document.createElement('link'); <style>
link.rel = 'icon'; html, body {
document.getElementsByTagName('head')[0].appendChild(link); background-color: black;
} margin: 0;
link.href = '/assets/img/new_favicon.ico'; height: 100%;
} }
}); .container {
</script> display: flex;
justify-content: center;
<iframe id="innerFrame" name="innerFrame" sandbox="allow-scripts allow-popups allow-forms allow-same-origin allow-popups-to-escape-sandbox allow-downloads" frameborder="0" allowfullscreen="" src="/reider/storage/gxmes/papaspizzeria/index.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;"> align-items: center;
</iframe> height: 100vh;
}
</style>
</head>
<body>
<div class="container">
<object data="https://milk.servemp3.com/reider/storage/gxmes/papaspizzeria/papaspizzeria.swf" width="1000" height="800" type="application/x-shockwave-flash">
<param name="allowScriptAccess" value="always">
<param name="allowFullScreen" value="true">
</object>
</div>
</body>
</html>