-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (63 loc) · 3.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<title>firestarter - simple, cozy, friendly smp</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A community-centric Minecraft SMP server with a simple, relaxing, and uncluttered experience that complements the vanilla game!">
<meta name="author" content="Firestarter Staff">
<meta name="keywords" content="Minecraft,survival,smp,server,realm,economy,smp,claims,pets,1.20">
<meta name="theme-color" content="#ea580c">
<meta name="og:type" content="website">
<meta name="og:image" content="https://firestartermc.com/img/logo/animated.gif">
<link rel="icon" type="image/png" href="./img/logo/sticker.png">
<link rel="stylesheet" href="css/styles.css" type="text/css">
</head>
<body>
<div class="content">
<h1 class="heading"><img id="logo" src="img/logo/sticker.png" alt="firestarter logo">firestarter</h1>
<h3 class="sub-text"> A simple, community-centric Minecraft SMP server!</h3>
<br />
<div class="main-text">
<ul class="repeating-before">
<li>A community SMP that was founded in August of 2019, aiming to create a fun, cozy, and
relaxing place to play Minecraft!
</li>
<li><strong>Simplicity</strong> is our central focus! Our simple <a href="https://firestartermc.com/guide">rules</a>
prohibit griefing and protect your builds from disaster.
</li>
<li>Our economy is player-driven- players can create their own shops and warps, auction off items at
their own prices, and trade with other players.
</li>
<li>We have a gigantic map, with lots of space for everybody to build and explore! Our
<strong>80,000 x 80,000</strong> block map is interconnected by a full library of player warps!
</li>
<li>We stay up to date! Come join us at
<code>firestartermc.com</code> with Minecraft 1.20: The Trails & Tales Update.
</li>
</ul>
</div>
<br />
<div class="nav-wrapper">
<div class="navigation">
<a href="https://firestartermc.com/guide" target="_blank">Guide</a>
<a href="https://vote.firestartermc.com" target="_blank">Vote</a>
<a href="https://store.firestartermc.com" target="_blank">Store</a>
<a href="https://discord.gg/yzj9HrF" target="_blank" class="discord-button">Discord</a>
</div>
</div>
<p class="current-player-count">_ playing right now! 🫶🏻</p>
<p class="copyright">firestarter © 2019-2023<br />We are not affiliated with Mojang AB.</p>
</div>
<!-- some fun statistics 🌿 -->
<script src="https://mcapi.us/scripts/minecraft.min.js"></script>
<script>
MinecraftAPI.getServerStatus('mc.firestartermc.com', (err, status) => {
if (err) {
return document.querySelector('.current-player-count').innerHTML = 'ten gazillion playing right now! 🤯';
}
var playerCount = status.players.now
document.querySelector('.current-player-count').innerHTML = (playerCount == 0 ? `Nobody playing right now. 🥲` : `${status.players.now} playing right now! 🫶🏻`)
});
</script>
</body>
</html>