1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 04:14:49 +00:00
MineXLauncher/public/index.html
2024-08-13 15:40:39 -07:00

66 lines
3.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MineXLauncher</title>
<link rel="icon" type="image/x-icon" href="/resources/images/icons/favicon.png" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Custom launcher for Eaglercraft, which contains many versions and clients." />
<meta name="keywords" content="minex, minexlauncher, launcher, custom launcher, modded minecraft, modded, minecraft, minecraft eaglercraft, eaglercraft, eaglercraftx, eaglercraftl, eagler, eaglerx, eaglerl, download, unblocked, minecraft versions, 1.2.5, 1.5.2, 1.5, 1.8, 1.8.8, 1.9, 1.9.4, 1.12, 1.3, 1.7.3, b1.3, b1.7.3, alpha, alpha 1.2.6, beta, beta 1.3, beta 1.7.3, a1.2.6, resent, shadow, client, resent client, shadow client, cracked, crack, cracked minecraft, hack, hacked, hacks, hacked client, hack client, free minecraft, pvp, minecraft download, offline, online, web, host, hosted, servers, multiplayer, custom launcher, skins, packs, textures, resource, mods, mod, mod download, pack download, texture download, texture pack download, fps, high fps, better fps, high fps, speed, fast, faster, lag, laggy, no lag, eaglerforge, forge, javascript, hack launcher, exploits, cheats, grief, griefing, mine" />
<meta property="og:locale" content="en-US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="MineXLauncher" />
<meta property="og:description" content="Custom launcher for Eaglercraft, which contains many versions and clients." />
<meta property="og:image" content="/resources/images/icons/favicon.png" />
<script src="/sw-register.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-972V2NZ2ZK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-972V2NZ2ZK');
</script>
<!-- End Google tag -->
<style>
body {
overflow: hidden;
background-color: #1e1e1e;
background-image: url('/resources/images/gifs/loading.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
background-size: 15vh;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function () {
function isMobile() {
try {
document.exitPointerLock();
return /Mobi/i.test(window.navigator.userAgent);
} catch (e) {
return true;
}
}
const iframe = document.createElement('iframe');
iframe.id = 'iframe-container';
iframe.style.position = 'fixed';
iframe.style.top = '0';
iframe.style.left = '0';
iframe.style.width = '100%';
iframe.style.height = '100%';
iframe.style.border = 'none';
if (isMobile()) {
iframe.src = '/mobile/';
} else {
iframe.src = '/home/game/';
}
document.body.appendChild(iframe);
});
</script>
</head>
</html>