-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (74 loc) · 4.2 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rustico Network</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
<link rel="shortcut icon" type="image/x-icon" href="../favicon.ico">
</head>
<body>
<section class="page-header">
<h1 class="project-name">Rustico Network</h1>
<h2 class="project-tagline">rustico.no-ip.org</h2>
<h3 class="project-tagline">HOME | <a href="https://rustico-network.github.io/bewerbungen.html"><font color="ffff00">BEWERBUNGEN</font></a> | <a href="https://rustico-network.github.io/team.html"><font color="ffff00">TEAM</font></a> | <a href="http://rustico.tk"><font color="ffff00">FORUM</font></a></h3>
</section>
<section class="main-content">
<h1>
<a id="willkommen-auf-der-offiziellen-website-des-rustico-netzwerks" class="anchor" href="#willkommen-auf-der-offiziellen-website-des-rustico-netzwerks" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Herzlich Willkommen!</h1>
<hr>
<h3>Spieler:</h3>
<script type="text/javascript">
func();
var refreshInterval = 5000;
setInterval(function(){
func();
}, refreshInterval);
function func(){
var ip = "Rustico.no-ip.org";
var xhr = new XMLHttpRequest();
xhr.open("GET", "https://eu.mc-api.net/v3/server/info/" + ip, true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
data = JSON.parse(xhr.responseText);
if (data.status) {
if(data.players.max == 0) {
document.getElementById("bar").innerHTML="Offline";
} else {
document.getElementById("bar").innerHTML=data.players.online + "/" + data.players.max;
document.getElementById("bar").style.width = 100*(data.players.online/data.players.max) + "%";
}
} else {
document.getElementById("bar").innerHTML="Offline";
}
}
}
xhr.send();
}
</script>
<div class="progress progress-striped active" style="background-color: #373737;">
<div class="progress-bar progress-bar-default" role="progressbar" style="width: 0%;" id="bar">0/0</div>
</div>
<h3>
<a id="neuer-teamspeak3-server" class="anchor" href="#neuer-teamspeak3-server" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Joine dem TS3-Server:</h3>
<p><a href="ts3server://rustico.no-ip.org"><img border="0" alt="Sofort Joinen" src="teamspeak.jpg" width="50" height="50"></a> <== Klick auf das Icon</p>
<h3>
<a id="Über-uns" class="anchor" href="#%C3%9Cber-uns" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Über uns:</h3>
<p>Wir sind ein eher kleines Team mit insgesamt 3 Admins (xIHades, V1Venox und Quadratwurzel).<br>
Wir suchen natürlich noch fleißig nach Verstärkung.<br>
Wenn du uns helfen willst, <a href="https://rustico-network.github.io/bewerbungen.html">bewirb dich doch</a>!</p>
<h3>
<a id="support" class="anchor" href="#support" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Support:</h3>
<p><a href="mailto:[email protected]">Technischer Support</a><br>
<a href="mailto:[email protected]">Allgemeine Fragen</a></p>
<footer class="site-footer">
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the <a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a> by <a href="https://twitter.com/jasonlong">Jason Long</a>.</span>
</footer>
</section>
</body>
</html>