forked from spacebar/SplatNet
45 lines
1.8 KiB
HTML
45 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta property="og:site_name" content="SplatNet - Splatoon's multiplayer service hub"/>
|
|
<meta property="og:title" content="SplatNet - Splatoon's multiplayer service hub"/>
|
|
<meta property="og:type" content="website"/>
|
|
<meta property="og:description" content="SplatNet is an online service enabling interaction between players of Splatoon. Players can recruit others to play with them and check the play information and ranking of their friends."/>
|
|
<meta property="og:url" content="https://wompwomp.ink"/>
|
|
<meta property="og:image" content="https://wompwomp.ink/assets/facebook_image-f7cbb3f4687a632cf0a44be1e68a7676dbb52eaf2ebc4b207522418825078203.jpg"/>
|
|
<div id="squid-container">
|
|
<canvas id="squid-canvas" width="1920" height="1080"></canvas>
|
|
</div>
|
|
<meta charset="UTF-8" />
|
|
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
|
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<div id="header-container"></div>
|
|
|
|
<div id="loading-overlay" class="loading-overlay">
|
|
<canvas id="loading-canvas" width="100" height="100"></canvas>
|
|
<div id="loading-text">Loading</div>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<img src="/assets/stageinfo.png" class="stage-info" alt="Stage Info" />
|
|
<div class="stage-info-text">
|
|
Use the stage information to guide your weapon strategy and battle strategy!
|
|
</div>
|
|
<div class="stages-container" id="stages-container"></div>
|
|
</div>
|
|
|
|
<script>
|
|
fetch("/header.html")
|
|
.then(res => res.text())
|
|
.then(html => {
|
|
document.getElementById("header-container").innerHTML = html;
|
|
})
|
|
.catch(err => console.error("Failed to load header:", err));
|
|
</script>
|
|
|
|
<script src="stages.js"></script>
|
|
</body>
|
|
</html>
|