This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
139 lines (124 loc) · 5.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>TotalFreedom - Freedom Download Site</title>
<!-- CSS -->
<script src="https://kit.fontawesome.com/4418425ecf.js" crossorigin="anonymous"></script>
<link href="fonts/material-icons.css" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<nav class="black" role="navigation">
<div class="nav-wrapper container">
<a href="#" class="brand-logo center"><img src="img/TFLogo.png"></a>
<a href="#" data-target="nav-mobile" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul class="left hide-on-med-and-down">
<li class="btn-flat"><a href="https://totalfreedom.me"><i class="fas fa-comments"></i> Website</a></li>
<li class="btn-flat"><a href="https://discord.com/invite/PW4savJR9a"><i class="fab fa-discord"></i> Discord</a>
</li>
</ul>
<ul class="right hide-on-med-and-down">
<li>
<span class="server-status"><center>The TF Network is currently <b><span class="server-online"></span></b></span>
</li>
</ul>
<ul id="nav-mobile" class="sidenav">
<li><a href="https://totalfreedom.me" target="_blank"><i class="fas fa-comments"></i> WEBSITE</a></li>
<li><a href="https://discord.com/invite/PW4savJR9a" target="_blank"><i class="fab fa-discord"></i> DISCORD</a>
</li>
</ul>
</div>>
</nav>
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<br><br>
<h1 class="header center black-text">Welcome</h1>
<div class="row center">
<h5 class="header col s12 light">Use the following links to navigate to the content you wish to access.</h5>
</div>
<div class="row center">
<table>
<thead>
<tr>
<th>Public Resources:<br></th>
<th>Restricted Resources:</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="list/" id="download-button" class="btn-large waves-effect waves-light blue">Online Players</a><br></td>
<td><a href="schematic/upload/" id="download-button" class="btn-large waves-effect waves-light red">Upload Schematics</a><br></td>
</tr>
<tr>
<td><a href="schematic/list/" id="download-button" class="btn-large waves-effect waves-light blue">Schematic List</a><br></td>
<td><a href="punishments/" id="download-button" class="btn-large waves-effect waves-light red">View Punishments</a><br></td>
</tr>
<tr>
<td><a href="help/" id="download-button" class="btn-large waves-effect waves-light blue">View Plugin Help</a><br></td>
<td><a href="bans/" id="download-button" class="btn-large waves-effect waves-light red">View Bans</a><br></td>
</tr>
<tr>
<td><a href="admins/" id="download-button" class="btn-large waves-effect waves-light blue">View Admin List</a><br></td>
<td><a href="indefbans/" id="download-button" class="btn-large waves-effect waves-light red">View Long Term Bans</a><br></td>
</tr>
<tr>
<td><a href="players/" id="download-button" class="btn-large waves-effect waves-light blue">View Players</a><br></td>
<td><a href="activitylog/" id="download-button" class="btn-large waves-effect waves-light red">View Activity Log</a><br></td>
</tr>
<tr>
<td></td>
<td><a href="logs/" id="download-button" class="btn-large waves-effect waves-light red">View Logs</a><br></td>
</tr>
<tr>
<td></td>
<td><a href="logfile/" id="download-button" class="btn-large waves-effect waves-light red">View Log Files</a><br></td>
</tr>
</tbody>
</table>
</div>
<br><br>
</div>
</div>
<footer class="page-footer black">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">About TotalFreedom</h5>
<p class="grey-text text-lighten-4">
The TotalFreedom Minecraft server was founded by Markbyron in November 2010. The server has a rich history of innovation and providing a game play experience like no other community.
</p>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
Designed & Maintained by
<a
class="purple-text text-lighten-1"
href="https://www.twitter.com/wild1145">Ryan</a>
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
<script src="https://mcapi.us/scripts/minecraft.min.js"></script>
<script>
MinecraftAPI.getServerStatus('play.totalfreedom.me', {
port: 25565 // optional, only if you need a custom port
}, function (err, status) {
if (err) {
return document.querySelector('.server-status').innerHTML = 'Error loading status';
}
// you can change these to your own message!
document.querySelector('.server-online').innerHTML = status.online ? '<span class="server-is-online">online</span>' : '<span class="server-is-offline">offline</span>';
// you can change these to your own message!
document.querySelector('.playercount').innerHTML = status.players.now ;
});
</script>
</body>
</html>