-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
91 lines (79 loc) · 3.83 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<head>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" type="application/javascript" defer></script>
<script type="text/javascript">var _paq=window._paq||[];_paq.push(["setDomains",["*.nsv.beestation13.com"]]),_paq.push(["trackPageView"]),_paq.push(["enableLinkTracking"]),function(){var e="//nsv.beestation13.com/matomo/";_paq.push(["setTrackerUrl",e+"matomo.php"]),_paq.push(["setSiteId","1"]);var a=document,t=a.createElement("script"),s=a.getElementsByTagName("script")[0];t.type="text/javascript",t.async=!0,t.defer=!0,t.src=e+"matomo.js",s.parentNode.insertBefore(t,s)}();</script>
<link rel="stylesheet" type="text/css" href="/static/css/main.css">
<link rel="stylesheet" type="text/css" href="/static/css/navigation.css">
<link rel="stylesheet" type="text/css" href="/static/css/parallax.css">
<link rel="stylesheet" type="text/css" href="/static/css/logo.css">
<!--Damn you webp.-->
<style>
.space-parallax {background-image: url("/static/img/parallax1.webp"), url("/static/img/parallax2.webp"), url("/static/img/parallax3.webp");}
</style>
<meta property="og:title" content="NSV13"/>
<meta property="og:type" content="website"/>
<meta property="og:description" content="NSV13 is a spiritual successor to FTL13 taking place on a warship. Join as a regular crewman, man the guns, fly the ship's fighters, or even steer it as it patrols space looking for Syndicate fleets to destroy."/>
<meta property="og:site_name" content="BeeStation"/>
<meta name="Description" content="NSV13 is a spiritual successor to FTL13 taking place on a warship. Join as a regular crewman, man the guns, fly the ship's fighters, or even steer it as it patrols space looking for Syndicate fleets to destroy.">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<title>NSV13</title>
</head>
<body>
<div class="space-parallax"></div>
<div class="logo">
<svg width="100%" viewBox="0 200 640 240" xmlns="http://www.w3.org/2000/svg" class="bg">
<g class="logo-blue-portion">
<text x="322" y="322" dominant-baseline="middle" text-anchor="middle" class="logo-title">NSV13</text>
<polygon class="logo-triangle-shape" points="77 262, 27 262, 77 312"/>
<polygon class="logo-triangle-shape" points="567 357, 617 357, 567 307"/>
</g>
<g class="logo-white-portion">
<text x="318" y="318" dominant-baseline="middle" text-anchor="middle" class="logo-title">NSV13</text>
<polygon class="logo-triangle-shape" points="73 258, 23 258, 73 308"/>
<polygon class="logo-triangle-shape" points="563 353, 613 353, 563 303"/>
</g>
</svg>
</div>
<div style="text-align: center; font-size: 3vw; margin-top: -5vw; margin-bottom: 4vw; color: #ffffffbb;">
<label id="playercount">---</label> Players Online
</div>
<nav class="nav">
<a class="nav-item" href="https://forums-nsv.beestation13.com/">
<div class="nav-item-button">
Forum
</div>
</a>
<a class="nav-item" href="/wiki">
<div class="nav-item-button">
Wiki
</div>
</a>
<a class="nav-item" href="/join">
<div class="nav-item-button">
Join
</div>
</a>
<a class="nav-item" href="https://github.com/BeeStation/NSV13">
<div class="nav-item-button">
GitHub
</div>
</a>
<a class="nav-item" href="/discord">
<div class="nav-item-button">
Discord
</div>
</a>
</nav>
<script>
function updatePlayerCount(){
$.getJSON("https://api.beestation13.com/stats/nsv_tupelo", function(json){
$("#playercount").html(json["players"]);
});
}
window.onload = function WindowLoad(event) {
updatePlayerCount();
window.setInterval(updatePlayerCount,10000);
}
</script>
<footer style="position:absolute;bottom:5px;width:100%;text-align:center;font-face:Arial;font-size:12px;color:#ffffffaa">NSV13 website made with <3 by <a href="https://github.com/qwertyquerty" style="color:#ccccccaa;">qwerty</a></footer>
</body>