mirror of
https://github.com/TotalFreedomMC/Website.git
synced 2024-12-22 00:05:09 +00:00
Merge pull request #5 from XenVoltz/development
Conduct Policy Update & Minor Fixes
This commit is contained in:
commit
d5609e8273
12 changed files with 733 additions and 552 deletions
131
calc/index.html
131
calc/index.html
|
@ -1,80 +1,83 @@
|
|||
<html>
|
||||
<head>
|
||||
|
||||
<head>
|
||||
<title>Admin Application Calculator</title>
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
<script src="script.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Admin Application Calculator</h1>
|
||||
<div class="form">
|
||||
<div>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Admin Application Calculator</h1>
|
||||
<div class="form">
|
||||
<div>
|
||||
<p>Application Type:</p>
|
||||
<select id="type">
|
||||
<option value="super">Super Admin</option>
|
||||
<option value="telnet">Telnet Admin</option>
|
||||
<option value="senior">Senior Admin</option>
|
||||
</select>
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<p>Operator:</p>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<p>Operator:</p>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(1);")>V (+1)</button>
|
||||
<button onclick="submit_vote(2);">V (+2)</button>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(-1);">O (-1)</button>
|
||||
<button onclick="submit_vote(-2);">O (-2)</button>
|
||||
</div>
|
||||
<button onclick="submit_vote(1);" )>V (+1)</button>
|
||||
<button onclick="submit_vote(2);">V (+2)</button>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<p>Super Admin:</p>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(2);")>V (+2)</button>
|
||||
<button onclick="submit_vote(3);">V (+3)</button>
|
||||
<button onclick="submit_vote(4);">V (+4)</button>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(-2);">O (-2)</button>
|
||||
<button onclick="submit_vote(-3);">O (-3)</button>
|
||||
<button onclick="submit_vote(-4);">O (-4)</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<p>Telnet Admin:</p>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(3);">V (+3)</button>
|
||||
<button onclick="submit_vote(4);">V (+4)</button>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(-3);">O (-3)</button>
|
||||
<button onclick="submit_vote(-4);">O (-4)</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<p>Senior Admin:</p>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(4);">V (+4)</button>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(-4);">O (-4)</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<p>Score:</p>
|
||||
<p><span id="points">0</span> points / <span id="total_votes">0</span> votes</p>
|
||||
<p><span id="rounded_percentage">0</span>% (<span id="percentage">0</span>%)</p>
|
||||
<p>Status: <span id="status">N/A</span></p>
|
||||
</div>
|
||||
<button onclick="submit_vote(-1);">O (-1)</button>
|
||||
<button onclick="submit_vote(-2);">O (-2)</button>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<div>
|
||||
<div>
|
||||
<p>Super Admin:</p>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(2);" )>V (+2)</button>
|
||||
<button onclick="submit_vote(3);">V (+3)</button>
|
||||
<button onclick="submit_vote(4);">V (+4)</button>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(-2);">O (-2)</button>
|
||||
<button onclick="submit_vote(-3);">O (-3)</button>
|
||||
<button onclick="submit_vote(-4);">O (-4)</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<p>Telnet Admin:</p>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(3);">V (+3)</button>
|
||||
<button onclick="submit_vote(4);">V (+4)</button>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(-3);">O (-3)</button>
|
||||
<button onclick="submit_vote(-4);">O (-4)</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<p>Senior Admin:</p>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(4);">V (+4)</button>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="submit_vote(-4);">O (-4)</button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<p>Score:</p>
|
||||
<p><span id="points">0</span> points / <span id="total_votes">0</span> votes</p>
|
||||
<p><span id="rounded_percentage">0</span>% (<span id="percentage">0</span>%)</p>
|
||||
<p>Status: <span id="status">N/A</span></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -5,8 +5,7 @@ var rounded_percentage = 0;
|
|||
var application_type = "super";
|
||||
var approved = false;
|
||||
|
||||
function submit_vote(points)
|
||||
{
|
||||
function submit_vote(points) {
|
||||
total_points += points;
|
||||
total_votes++;
|
||||
percentage = (total_points / total_votes) * 100;
|
||||
|
@ -14,38 +13,27 @@ function submit_vote(points)
|
|||
update_score();
|
||||
}
|
||||
|
||||
function update_score()
|
||||
{
|
||||
function update_score() {
|
||||
document.getElementById("points").innerHTML = total_points;
|
||||
document.getElementById("total_votes").innerHTML = total_votes;
|
||||
document.getElementById("rounded_percentage").innerHTML = rounded_percentage;
|
||||
document.getElementById("percentage").innerHTML = percentage;
|
||||
application_type = document.getElementById("type").value;
|
||||
|
||||
if (application_type == "super" && rounded_percentage >= 60)
|
||||
{
|
||||
|
||||
if (application_type == "super" && rounded_percentage >= 60) {
|
||||
approved = true;
|
||||
}
|
||||
else if (application_type == "telnet" && rounded_percentage >= 65)
|
||||
{
|
||||
} else if (application_type == "telnet" && rounded_percentage >= 65) {
|
||||
approved = true;
|
||||
}
|
||||
else if (application_type == "senior" && rounded_percentage >= 70)
|
||||
{
|
||||
} else if (application_type == "senior" && rounded_percentage >= 70) {
|
||||
approved = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
approved = false;
|
||||
}
|
||||
|
||||
if (approved)
|
||||
{
|
||||
|
||||
if (approved) {
|
||||
document.getElementById("status").style = "color: #0f0;";
|
||||
document.getElementById("status").innerHTML = "Accepted";
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
document.getElementById("status").style = "color: #f00;";
|
||||
document.getElementById("status").innerHTML = "Denied";
|
||||
}
|
||||
|
|
|
@ -30,14 +30,15 @@ select {
|
|||
color: white;
|
||||
cursor: pointer;
|
||||
-webkit-appearance: none;
|
||||
|
||||
}
|
||||
|
||||
select::before {
|
||||
border-bottom-style: solid;
|
||||
border-top: none;
|
||||
border-bottom-style: solid;
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
select:after {
|
||||
margin-top: 7px;
|
||||
border-top-style: solid;
|
||||
border-bottom: none;
|
||||
margin-top: 7px;
|
||||
border-top-style: solid;
|
||||
border-bottom: none;
|
||||
}
|
|
@ -2,10 +2,12 @@ body {
|
|||
background: #222 url("../images/conduct-bg.png") fixed no-repeat center center;
|
||||
background-size: cover;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
margin-bottom: 50px; }
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.brand-logo {
|
||||
font-family: 'Raleway', sans-serif !important; }
|
||||
font-family: 'Raleway', sans-serif !important;
|
||||
}
|
||||
|
||||
.content {
|
||||
margin: 50px auto;
|
||||
|
@ -13,30 +15,43 @@ body {
|
|||
width: 90%;
|
||||
color: #eee;
|
||||
height: 100%;
|
||||
background: rgba(34, 34, 34, 0.6); }
|
||||
.content h1 {
|
||||
margin-top: 5.17241px;
|
||||
font-size: 1.3em;
|
||||
font-weight: 900;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid #ccc;
|
||||
padding: 0 0 10px; }
|
||||
.content h3 {
|
||||
font-size: 1.05em;
|
||||
font-weight: 600; }
|
||||
.content li {
|
||||
padding: 5px; }
|
||||
.content .warning {
|
||||
color: #F44336;
|
||||
padding: 1px 10px;
|
||||
border-left: 3px solid #F44336;
|
||||
display: block; }
|
||||
.content a {
|
||||
color: #bbb;
|
||||
padding: 2px;
|
||||
-webkit-transition: all .3s ease-in-out;
|
||||
-o-transition: all .3s ease-in-out;
|
||||
transition: all .3s ease-in-out;
|
||||
border-bottom: 1px hidden #ccc; }
|
||||
.content a:hover {
|
||||
border-bottom: 1px solid #ccc; }
|
||||
background: rgba(34, 34, 34, 0.6);
|
||||
}
|
||||
|
||||
.content h1 {
|
||||
margin-top: 5.17241px;
|
||||
font-size: 1.3em;
|
||||
font-weight: 900;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid #ccc;
|
||||
padding: 0 0 10px;
|
||||
}
|
||||
|
||||
.content h3 {
|
||||
font-size: 1.05em;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.content li {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.content .warning {
|
||||
color: #F44336;
|
||||
padding: 1px 10px;
|
||||
border-left: 3px solid #F44336;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.content a {
|
||||
color: #bbb;
|
||||
padding: 2px;
|
||||
-webkit-transition: all .3s ease-in-out;
|
||||
-o-transition: all .3s ease-in-out;
|
||||
transition: all .3s ease-in-out;
|
||||
border-bottom: 1px hidden #ccc;
|
||||
}
|
||||
|
||||
.content a:hover {
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
39
css/main.css
39
css/main.css
|
@ -23,6 +23,7 @@ body {
|
|||
padding: 10px 55px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: #c8c8c8;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#rules-title:hover,
|
||||
|
@ -82,7 +83,8 @@ body {
|
|||
.rule {
|
||||
z-index: 100;
|
||||
display: none;
|
||||
padding: 30px
|
||||
padding: 30px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#rules-title,
|
||||
|
@ -429,57 +431,65 @@ small {
|
|||
}
|
||||
|
||||
footer.page-footer .footer-copyright {
|
||||
height: auto!important;
|
||||
height: auto !important;
|
||||
margin-bottom: -15px
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-size: 1.35em;text-align: center;
|
||||
margin-top: 2px;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-size: 1.35em;
|
||||
text-align: center;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.github {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
font-size: 16px;
|
||||
z-index: 1;
|
||||
color: #ddd;
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
font-size: 16px;
|
||||
z-index: 1;
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
.github-icon {
|
||||
font-family: FontAwesome;
|
||||
font-family: FontAwesome;
|
||||
}
|
||||
|
||||
.github-icon::before {
|
||||
content: '\f09b'
|
||||
content: '\f09b'
|
||||
}
|
||||
|
||||
@media only screen and (max-width:991px) {
|
||||
|
||||
.cover-2 h2,
|
||||
.cover-2 p {
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.online-part {
|
||||
padding: 25% .7%
|
||||
}
|
||||
|
||||
.rule {
|
||||
padding: 15px
|
||||
}
|
||||
|
||||
.useful {
|
||||
margin-top: 0;
|
||||
margin: 0
|
||||
}
|
||||
|
||||
.discord-widget {
|
||||
padding-left: 0;
|
||||
-webkit-transform: translateX(25%);
|
||||
-ms-transform: translateX(25%);
|
||||
transform: translateX(25%)
|
||||
}
|
||||
|
||||
.admins>ul>a {
|
||||
display: block;
|
||||
border-radius: 0
|
||||
}
|
||||
|
||||
.head-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
|
@ -487,21 +497,26 @@ h3 {
|
|||
float: left;
|
||||
border-radius: 50%
|
||||
}
|
||||
|
||||
.modal li {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 5px 70px
|
||||
}
|
||||
|
||||
.modal-msg {
|
||||
margin: 25px 0;
|
||||
padding: 5px
|
||||
}
|
||||
|
||||
.nav-wrapper {
|
||||
background: #111
|
||||
}
|
||||
|
||||
.modal.modal-fixed-footer .modal-content {
|
||||
padding: 10px
|
||||
}
|
||||
|
||||
nav .nav-wrapper li>a {
|
||||
font-weight: 500;
|
||||
font-size: 1em
|
||||
|
|
479
index.html
479
index.html
|
@ -1,7 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!--
|
||||
|
||||
<head>
|
||||
<!--
|
||||
Copyright 2017 Aggelos Sarris and contributors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
|
@ -17,263 +18,351 @@
|
|||
limitations under the License.
|
||||
|
||||
-->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Home | TotalFreedom Minecraft Server</title>
|
||||
<meta name="author" content="aggelosQQ, scripthead">
|
||||
<meta name="keywords" content="TF,minecraft,totalfreedom,free op,server,worldedit,freebuild">
|
||||
<meta name="description" content="TotalFreedom is the first Free OP Minecraft server, which is up and running since 2010! play.totalfreedom.me">
|
||||
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600" rel="stylesheet">
|
||||
<link async rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
|
||||
<link async rel="stylesheet" href="css/component.min.css">
|
||||
<link async rel="stylesheet" href="css/global.css">
|
||||
<link async rel="stylesheet" href="css/main.css">
|
||||
<link async rel="icon" href="favicon.png" type="image/png">
|
||||
<link async rel="shortcut icon" href="favicon.png" type="image/png">
|
||||
<script>! function(a, b, c, d, e, f, g){a.GoogleAnalyticsObject=e, a[e]=a[e] || function(){(a[e].q=a[e].q || []).push(arguments)}, a[e].l=1 * new Date, f=b.createElement(c), g=b.getElementsByTagName(c)[0], f.async=1, f.src=d, g.parentNode.insertBefore(f, g)}(window, document, "script", "https://www.google-analytics.com/analytics.js", "ga"), ga("create", "UA-74643356-2", "auto"), ga("send", "pageview"); </script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="navbar-fixed">
|
||||
<nav class="transparent z-depth-0" id="menu">
|
||||
<div class="nav-wrapper z-depth-0">
|
||||
<a href="#" id="brand-top" class="brand-logo"><small class="hide-on-med-and-down">play.</small>TotalFreedom<small class="hide-on-med-and-down">.me</small></a>
|
||||
<a href="#" data-activates="mobile" class="button-collapse"><i class="fa fa-bars"></i></a>
|
||||
<ul class="right hide-on-med-and-down cl-effect-14" id="cl-effect-14">
|
||||
<li><a href="#" id="top">Home</a></li>
|
||||
<li><a href="#" id="rules">Rules</a></li>
|
||||
<li><a href="/emailappeal">Email Appeal</a></li>
|
||||
<li><a href="#" id="staff">Staff</a></li>
|
||||
<li><a href="/masterbuilders">Masterbuilders</a></li>
|
||||
<li><a href="https://totalfreedom.boards.net" class="tooltipped" data-position="bottom" data-delay="50" data-tooltip="You will be redirected to totalfreedom.boards.net">Forum</a></li>
|
||||
</ul>
|
||||
<ul class="side-nav" id="mobile">
|
||||
<li><a href="#header">Home</a></li>
|
||||
<li><a href="#rules">Rules</a></li>
|
||||
<li><a href="/emailappeal">Email Appeal</a></li>
|
||||
<li><a href="#staff">Staff</a></li>
|
||||
<li><a href="masterbuilders/">Masterbuilders</a></li>
|
||||
<li><a href="https://totalfreedom.boards.net">Forum</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
<a href="https://github.com/TFPatches/Website" class="github" aria-hidden="true"><span class="github-icon"></span> Edit on GitHub</a>
|
||||
<div class="section active cover-1" id="header">
|
||||
<div class="online-part">
|
||||
<h3 id="server-status"> <span id="online"></span></h3>
|
||||
<a href="#onlineplayers" class="button modal-trigger" data-target="onlineplayers">Online Players</a>
|
||||
<p style="font-size: 1em;line-height: 69px;" id="lastupdate"></p>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Home | TotalFreedom Minecraft Server</title>
|
||||
<meta name="author" content="aggelosQQ, scripthead">
|
||||
<meta name="keywords" content="TF,minecraft,totalfreedom,free op,server,worldedit,freebuild">
|
||||
<meta name="description"
|
||||
content="TotalFreedom is the first Free OP Minecraft server, which is up and running since 2010! play.totalfreedom.me">
|
||||
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600" rel="stylesheet">
|
||||
<link async rel="stylesheet"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
|
||||
<link async rel="stylesheet" href="css/component.min.css">
|
||||
<link async rel="stylesheet" href="css/global.css">
|
||||
<link async rel="stylesheet" href="css/main.css">
|
||||
<link async rel="icon" href="favicon.png" type="image/png">
|
||||
<link async rel="shortcut icon" href="favicon.png" type="image/png">
|
||||
<script>
|
||||
! function (a, b, c, d, e, f, g) {
|
||||
a.GoogleAnalyticsObject = e, a[e] = a[e] || function () {
|
||||
(a[e].q = a[e].q || []).push(arguments)
|
||||
}, a[e].l = 1 * new Date, f = b.createElement(c), g = b.getElementsByTagName(c)[0], f.async = 1, f.src = d,
|
||||
g.parentNode.insertBefore(f, g)
|
||||
}(window, document, "script", "https://www.google-analytics.com/analytics.js", "ga"), ga("create",
|
||||
"UA-74643356-2", "auto"), ga("send", "pageview");
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="navbar-fixed">
|
||||
<nav class="transparent z-depth-0" id="menu">
|
||||
<div class="nav-wrapper z-depth-0">
|
||||
<a href="#" id="brand-top" class="brand-logo"><small
|
||||
class="hide-on-med-and-down">play.</small>TotalFreedom<small
|
||||
class="hide-on-med-and-down">.me</small></a>
|
||||
<a href="#" data-activates="mobile" class="button-collapse"><i class="fa fa-bars"></i></a>
|
||||
<ul class="right hide-on-med-and-down cl-effect-14" id="cl-effect-14">
|
||||
<li><a href="#" id="top">Home</a></li>
|
||||
<li><a href="#" id="rules">Rules</a></li>
|
||||
<li><a href="/emailappeal">Email Appeal</a></li>
|
||||
<li><a href="#" id="staff">Staff</a></li>
|
||||
<li><a href="/masterbuilders">Masterbuilders</a></li>
|
||||
<!-- <li><a href="https://totalfreedom.boards.net/" class="tooltipped" data-position="bottom" data-delay="50"
|
||||
data-tooltip="You will be redirected to totalfreedom.boards.net">Forum</a></li> -->
|
||||
<li><a href="https://forum.totalfreedom.me/" target="_blank">Forum</a></li>
|
||||
</ul>
|
||||
<ul class="side-nav" id="mobile">
|
||||
<li><a href="#header">Home</a></li>
|
||||
<li><a href="#rules">Rules</a></li>
|
||||
<li><a href="/emailappeal">Email Appeal</a></li>
|
||||
<li><a href="#staff">Staff</a></li>
|
||||
<li><a href="masterbuilders/">Masterbuilders</a></li>
|
||||
<li><a href="https://totalfreedom.boards.net">Forum</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="onlineplayers" class="modal modal-fixed-footer">
|
||||
<div class="modal-content">
|
||||
<h4 id="players-online">
|
||||
</h4>
|
||||
<ul id="players"></ul>
|
||||
<br/>
|
||||
<div class="modal-msg">
|
||||
<h5>Why don't you visit us yourself?</h5>
|
||||
<span class="ip">play.totalfreedom.me</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<a href="#!" class="modal-action modal-close btn-flat waves-effect waves-dark">I'm Done</a>
|
||||
</nav>
|
||||
</div>
|
||||
<a href="https://github.com/TFPatches/Website" class="github" aria-hidden="true"><span class="github-icon"></span>
|
||||
Edit on GitHub</a>
|
||||
<div class="section active cover-1" id="header">
|
||||
<div class="online-part">
|
||||
<h3 id="server-status"> <span id="online"></span></h3>
|
||||
<a href="#onlineplayers" class="button modal-trigger" data-target="onlineplayers">Online Players</a>
|
||||
<p style="font-size: 1em;line-height: 69px;" id="lastupdate"></p>
|
||||
</div>
|
||||
<div id="onlineplayers" class="modal modal-fixed-footer">
|
||||
<div class="modal-content">
|
||||
<h4 id="players-online">
|
||||
</h4>
|
||||
<ul id="players"></ul>
|
||||
<br />
|
||||
<div class="modal-msg">
|
||||
<h5>Why don't you visit us yourself?</h5>
|
||||
<span class="ip">play.totalfreedom.me</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<a href="#!" class="modal-action modal-close btn-flat waves-effect waves-dark">Close</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section cover-2" id="rules-sec">
|
||||
<h1 class="section-title">Server Rules</h1>
|
||||
</div>
|
||||
<div class="section cover-2" id="rules-sec">
|
||||
<div class="container">
|
||||
<h1 class="section-title">Server Conduct Policy</h1>
|
||||
<div class="rules-section">
|
||||
<h2 id="rules-title" class="one waves-effect waves-brown">No Malicious Actions <i class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<p class="rule a">Do not attempt to cause harm to the server. This can include, intentionally crashing the server, lagging the server, destroying or damaging the spawn, destroying or damaging other player's builds, erasing warp points, PVP without agreement of other players (or in a forbidden gamemode), chat spamming, and so forth.<br>Use your best judgment, and remember that other people are on here to have fun also.</p>
|
||||
<h2 id="rules-title" class="one waves-effect waves-brown">Category 1 (Permanent Bannable Offenses) <i
|
||||
class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<div class="rule a">
|
||||
<h3>Bans that restrict the user from joining the server permanently depending on the severity of the offense. Users who were permanently banned are able to appeal via the <a href="https://totalfreedom.boards.net/thread/66099/perm-release-form-february-2020">forums</a> or <a href="emailappeal/index.html">email</a>.</h3>
|
||||
<p>a. Attempts at harming the server.</p>
|
||||
<p>b. Repeated rule-breaking (recurring category 2 & 3 offenses or punishment bypassing).</p>
|
||||
<p>c. Attempting to or successfully DDoSing or doxing any (ex)member of TotalFreedom.</p>
|
||||
<p>d. Impersonating any (ex)member of TotalFreedom.</p>
|
||||
<p>e. Framing any (ex)member of TotalFreedom.</p>
|
||||
<p>f. Unauthorized access to admin-exclusive resources.</p>
|
||||
<p>g. Using an exploit that restricts a players experience.</p>
|
||||
<p>h. Attempts to harm any (ex)member of TotalFreedom.</p>
|
||||
<p>i. Threatening to commit/committing illegal activities that violate US Law on any official
|
||||
TotalFreedom platform.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="rules-section">
|
||||
<h2 id="rules-title" class="two waves-effect waves-brown">No Imposing <i class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<p class="rule b">Do not pose as the server owner (scripthead) and do not pose as an admin or one of the other regular players that use Total Freedom. By imposing, that means you are using a program such as MinecraftSP, changing your nick or using a tag to make yourself appear as a member of staff. You may not use nicks or tags that imply you have an official position on the server. This includes any nick or tag including the words admin, senior, owner, telnet, builder, architect, coder, dev, programmer, mod, security, or any nick or tag that the owner or a senior admin believes is an attempt to impose or show that you have an invalid staff position. In such cases, the offender will be de-nicked, have their tag removed or could be banned depending if the offense repeats itself. Changing your in-game name to a "famous" (like Notch) via a hacked client is okay provided you do not use it to violate the rules of the server. In such cases, the offender's IP may be banned or permbanned based on the severity of the action.</p>
|
||||
<h2 id="rules-title" class="two waves-effect waves-brown">Category 2 (Temporary Bannable Offenses) <i
|
||||
class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<div class="rule b">
|
||||
<h3>Bans that restrict the user from joining the server for 24 hours. Users who were given a day ban are able to appeal via the <a href="https://totalfreedom.boards.net/thread/64391">forums</a>.</h3>
|
||||
<p>a. Modifying other players’ builds (with intent) without permission from the builder.</p>
|
||||
<p>b. Tricking players into breaking a rule.</p>
|
||||
<p>c. Repeated offenses from Category 3 (Minor Offense).</p>
|
||||
<p>d. Posting links to NSFW, scams, gore, or money soliciting sites.</p>
|
||||
<p>e. Self-harm or suicide threats.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="rules-section">
|
||||
<h2 id="rules-title" class="three waves-effect waves-brown">Respect Privacy <i class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<p class="rule c">Respect the "Total Freedom" of other players and admins. Do not be a pest or a nuisance to others, and respect their privacy. Do not "help" with builds if people do not want you to, and do not teleport someone without their permission. It is best to use /tpahere to request for someone to teleport to you, rather than forcefully teleporting them. </p>
|
||||
</div>
|
||||
<div class="rules-section">
|
||||
<h2 id="rules-title" class="four waves-effect waves-brown">Respect others <i class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<p class="rule d">Do not engage in personal attacks on other players/admins and take all personal disputes off the server. If you don't like a particular player, feel more than free to use the ignore command on them but personal wars on the server won't be tolerated regardless of who started it and temporary bans will result. If you're coming on the server to troll other players, you'll end up getting trolled yourself (we love to play with trolls). Similarly, threats to DOX, threats to commit illegal acts (e.g. DDOS), graphic sexual discussion or RP, linking to porn or scam sites, racist attacks, and other forms of behavior designed to offend, intimidate or harass will not be tolerated.</p>
|
||||
</div>
|
||||
<div class="rules-section">
|
||||
<h2 id="rules-title" class="five waves-effect waves-brown">Adhere to Authority <i class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<p class="rule e">Do not override the actions of the server owners or other admins. For example, if an admin de-ops or bans a player for griefing, you may not re-op or pardon them without permission. Super admins will follow the directions of senior admins with respect to any admin matter unless it violates server rules. If it violates the rules, the admin will notify the proper authority.</p>
|
||||
<h2 id="rules-title" class="three waves-effect waves-brown">Category 3 (Minor Offenses) <i
|
||||
class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<div class="rule c">
|
||||
<h3>These offenses will not result in a 24-hour ban or a permanent ban unless they are done repeatedly. (Punishment may include: mutes, smites, temporary bans, warnings etc).</h3>
|
||||
<p>a. Bigotry.</p>
|
||||
<p>b. Spamming commands or chat.</p>
|
||||
<p>c. Being a nuisance to other players.</p>
|
||||
<p>d. Interfering with an admin doing their job.</p>
|
||||
<p>e. Having a nickname that is unreadable, i.e. admins cannot use /realname on it. </p>
|
||||
<p>f. A tag/nick that implies an official rank that they do not have or one that impersonates another
|
||||
player.</p>
|
||||
<p>g. Pornographic builds if in a 250 block radius of spawn.</p>
|
||||
<p>h. Advertising a server more than once in a 1 hour period.</p>
|
||||
</div>
|
||||
</div>
|
||||
<!--<p class="caution" style="margin-bottom: -45px;"><i class="fa fa-exclamation-triangle"></i> TotalFreedom does not accept donations.</p>-->
|
||||
<ul class="rest">
|
||||
<li>
|
||||
<a href="https://totalfreedom.boards.net/thread/65799" class="readmore waves-effect waves-light">Read the Conduct Policy</a>
|
||||
<a href="https://totalfreedom.boards.net/thread/65799" class="readmore waves-effect waves-light">Read the
|
||||
Conduct Policy</a>
|
||||
</li>
|
||||
</ul>
|
||||
<h1 class="section-title">Support/Help</h1>
|
||||
<div class="rules-section">
|
||||
<h2 id="rules-title" class="six">Saving Builds <i class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<p class="rule f">To save your builds (i.e. create a WorldEdit schematic), first use the //wand tool to select the bounds of your build (i.e. the opposite corners of your build). Then, type //copy to place your build on the clipboard, and type //schem save nameofbuild to save your build (replacing nameofbuild with a unique name of your own).<br/> To load a schematic back into the world, do //schem load nameofbuild, and then //paste..</p>
|
||||
<h2 id="rules-title" class="six">Saving Builds <i
|
||||
class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<p class="rule f">To save your builds (i.e. create a WorldEdit schematic), first use the //wand tool to
|
||||
select the bounds of your build (i.e. the opposite corners of your build). Then, type //copy to place
|
||||
your build on the clipboard, and type //schem save nameofbuild to save your build (replacing nameofbuild
|
||||
with a unique name of your own).<br /> To load a schematic back into the world, do //schem load
|
||||
nameofbuild, and then //paste..</p>
|
||||
</div>
|
||||
<div class="rules-section">
|
||||
<h2 id="rules-title" class="seven">Flatlands <i class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<p class="rule g">This server features an additional flat-land building world which is very useful for building intricate creations. You can access this world by typing /flatlands, and you can get back to the main world by typing /flatlands again.</p>
|
||||
<h2 id="rules-title" class="seven">Flatlands <i
|
||||
class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<p class="rule g">This server features an additional flat-land building world which is very useful for
|
||||
building intricate creations. You can access this world by typing /flatlands, and you can get back to the
|
||||
main world by typing /flatlands again.</p>
|
||||
</div>
|
||||
<div class="rules-section">
|
||||
<h2 id="rules-title" class="eight">Gamemodes <i class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<p class="rule h">You are free to use creative or survival mode on the server. For creative, type /creative. For survival, type /survival. </p>
|
||||
</div>
|
||||
<h2 id="rules-title" class="eight">Gamemodes <i
|
||||
class="fa fa-chevron-right rules-icon hide-on-med-and-down"></i></h2>
|
||||
<p class="rule h">You are free to use creative or survival mode on the server. For creative, type /creative.
|
||||
For survival, type /survival. </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section cover-3" id="staff-sec">
|
||||
<br/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section cover-3" id="staff-sec">
|
||||
<br />
|
||||
<h1 class="section-title" style="margin-bottom: 10px;">Upper-Level Staff Members</h1>
|
||||
<h3>Last updated August 1st, 2020</h3>
|
||||
<h3>Last Updated: August 13th, 2020</h3>
|
||||
<div class="container">
|
||||
<div class="admins">
|
||||
<h2 class="rank">Executives</h2>
|
||||
<ul id="executiveboard">
|
||||
<a href="https://totalfreedom.boards.net/user/20408" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/scripthead/32.png" class="responsive-img head-icon">scripthead - Owner</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/scripthead/32.png" class="responsive-img head-icon">scripthead
|
||||
- Owner</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/3" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/markbyron/32.png" class="responsive-img head-icon">markbyron - Founder</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/markbyron/32.png" class="responsive-img head-icon">markbyron -
|
||||
Founder</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/1514" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/Madgeek1450/32.png" class="responsive-img head-icon">Madgeek1450 - Co-Founder</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/Madgeek1450/32.png"
|
||||
class="responsive-img head-icon">Madgeek1450 - Co-Founder</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/1" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/Finest95/32.png" class="responsive-img head-icon">Finest95 - Forum Owner & Manager</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/Finest95/32.png" class="responsive-img head-icon">Finest95 -
|
||||
Forum Owner & Manager</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/22952" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/zeseryu/32.png" class="responsive-img head-icon">zeseryu - Admin Officer</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/zeseryu/32.png" class="responsive-img head-icon">zeseryu -
|
||||
Admin Officer</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/23874" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/Rhymix/32.png" class="resonsive-img head-icon">Rhymix - Creative Designer</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/Rhymix/32.png" class="resonsive-img head-icon">Rhymix -
|
||||
Creative Designer</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/19507" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/DarthZonarius/32.png" class="responsive-img head-icon">DarthZonarius - Server Liaison</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/DarthZonarius/32.png"
|
||||
class="responsive-img head-icon">DarthZonarius - Server Liaison</li>
|
||||
</a>
|
||||
</ul>
|
||||
<h2 class="rank">Assistant Executives</h2>
|
||||
<ul id="assistexecboard">
|
||||
<a href="https://totalfreedom.boards.net/user/22775" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/fionnn/32.png" class="responsive-img head-icon">fionnn - Assistant Admin Officer</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/fionnn/32.png" class="responsive-img head-icon">fionnn -
|
||||
Assistant Admin Officer</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/23832" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/Zevante/32.png" class="responsive-img head-icon">Zevante - Assistant Admin Officer</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/Zevante/32.png" class="responsive-img head-icon">Zevante -
|
||||
Assistant Admin Officer</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/23930" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/Lyicx/32.png" class="responsive-img head-icon">Lyicx - Assistant Server Liaison</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/Lyicx/32.png" class="responsive-img head-icon">Lyicx -
|
||||
Assistant Server Liaison</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/5863" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/OxElmonxO/32.png" class="responsive-img head-icon">OxElmonxO - Assistant Server Liaison</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/OxElmonxO/32.png" class="responsive-img head-icon">OxElmonxO -
|
||||
Assistant Server Liaison</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/21917" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/squareMC/32.png" class="responsive-img head-icon">squareMC - Assistant Creative Designer</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/squareMC/32.png" class="responsive-img head-icon">squareMC -
|
||||
Assistant Creative Designer</li>
|
||||
</a>
|
||||
</ul>
|
||||
<h2 class="rank">Forum Staff</h2>
|
||||
<ul id="modboard">
|
||||
<a href="https://totalfreedom.boards.net/user/1" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/Finest95/32.png" class="responsive-img head-icon">Finest95 - Forum Admin</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/20408" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/scripthead/32.png" class="responsive-img head-icon">scripthead - Forum Admin</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/10099" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/StevenNL2000/32.png" class="responsive-img head-icon">StevenNL2000 - Forum Admin</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/22952" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/zeseryu/32.png" class="responsive-img head-icon">zeseryu - Forum Admin</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/10700" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/JJ_Jaguar2000/32.png" class="responsive-img head-icon">JJ_Jaguar2000 - Forum Mod</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/84" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/Cowgomooo12/32.png" class="responsive-img head-icon">Cowgomooo12 - Forum Mod</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/3448" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/TheMinecraft/32.png" class="responsive-img head-icon">TheMinecraft - Forum Mod</li>
|
||||
</a>
|
||||
</ul>
|
||||
</ul>
|
||||
<h2 class="rank">Forum Staff</h2>
|
||||
<ul id="modboard">
|
||||
<a href="https://totalfreedom.boards.net/user/1" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/Finest95/32.png" class="responsive-img head-icon">Finest95 -
|
||||
Forum Admin</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/20408" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/scripthead/32.png" class="responsive-img head-icon">scripthead
|
||||
- Forum Admin</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/10099" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/StevenNL2000/32.png"
|
||||
class="responsive-img head-icon">StevenNL2000 - Forum Admin</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/22952" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/zeseryu/32.png" class="responsive-img head-icon">zeseryu -
|
||||
Forum Admin</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/10700" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/JJ_Jaguar2000/32.png"
|
||||
class="responsive-img head-icon">JJ_Jaguar2000 - Forum Mod</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/84" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/Cowgomooo12/32.png"
|
||||
class="responsive-img head-icon">Cowgomooo12 - Forum Mod</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/3448" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/TheMinecraft/32.png"
|
||||
class="responsive-img head-icon">TheMinecraft - Forum Mod</li>
|
||||
</a>
|
||||
</ul>
|
||||
<h1 class="rank">Internal Affairs</h1>
|
||||
<ul id="internalaffairs">
|
||||
<a href="https://totalfreedom.boards.net/user/23832" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/Zevante/32.png" class="responsive-img head-icon">Zevante - Leader</li>
|
||||
</a>
|
||||
<li> <img src="https://mc-heads.net/avatar/Zevante/32.png" class="responsive-img head-icon">Zevante -
|
||||
Leader</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/23037" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/Tozzit/32.png" class="responsive-img head-icon">Tozzit</li>
|
||||
</a>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/16482" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/mmmmmonke/32.png" class="responsive-img head-icon">mmmmmonke</li>
|
||||
<li> <img src="https://mc-heads.net/avatar/mmmmmonke/32.png" class="responsive-img head-icon">mmmmmonke
|
||||
</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/user/22775" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/fionnn/32.png" class="responsive-img head-icon">fionnn</li>
|
||||
</a>
|
||||
</ul>
|
||||
<div class="container">
|
||||
<ul class="rest">
|
||||
<li><a href="/staff" class="readmore waves-effect waves-light">See the rest of the staff</a></li>
|
||||
<br/>
|
||||
<a href="https://totalfreedom.boards.net/user/22926" target="_blank" class="waves-effect waves-dark">
|
||||
<li> <img src="https://mc-heads.net/avatar/serrif/32.png" class="responsive-img head-icon">serrif</li>
|
||||
</a>
|
||||
</ul>
|
||||
<br/>
|
||||
<hr>
|
||||
<br/>
|
||||
<div class="row">
|
||||
<div class="col s12 m12 l8">
|
||||
<ul class="useful">
|
||||
<h3 style="text-align: center;">Useful Links</h3>
|
||||
<a href="http://totalfreedom.boards.net" target="_blank" class="readmore waves-effect waves-dark">
|
||||
<li><i class="fa fa-comments icon"></i><br/> Forum</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/thread/65799" target="_blank" class="readmore waves-effect waves-dark">
|
||||
<li><i class="fa fa-ban icon"></i><br/> Conduct Policy</li>
|
||||
</a>
|
||||
<a href="http://github.com/TotalFreedom" target="_blank" class="readmore waves-effect waves-dark">
|
||||
<li><i class="fa fa-github icon"></i><br/>Github</li>
|
||||
</a>
|
||||
<a href="https://twitter.com/totalfreedommc" target="_blank" class="readmore waves-effect waves-dark">
|
||||
<li><i class="fa fa-twitter icon"></i><br/> Twitter</li>
|
||||
</a>
|
||||
<a href="https://discord.gg/hdCA22p" target="_blank" class="readmore hide-on-large-only waves-effect waves-dark">
|
||||
<li><img src="images/fa-discord.png" style="width: 27.734; height: 32px;"><br/> Discord</li>
|
||||
</a>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col s12 m12 l4 hide-on-med-and-down">
|
||||
<!-- <h3 style="text-align: center;" class="discord-widget-title">Join our Discord!</h3> -->
|
||||
<iframe src="https://discordapp.com/widget?id=142361999538520065&theme=dark" class="discord-widget" width="375" height="450" align="center" allowtransparency="true" frameborder="0"></iframe>
|
||||
<br>
|
||||
<hr>
|
||||
<br>
|
||||
<p align="center" class="text-align: center;">
|
||||
</div>
|
||||
</div>
|
||||
<footer class="page-footer transparent">
|
||||
<div class="container">
|
||||
<div class="footer-copyright">
|
||||
<div class="container">
|
||||
<hr>
|
||||
TotalFreedom © 2010 - <span id="curYear"></span>
|
||||
<a class="grey-text text-lighten-4 right" href="https://aggelosqq.com" target="_blank">Designed by aggelosQQ</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="center">
|
||||
<ul class="rest">
|
||||
<li><a href="/staff" class="readmore waves-effect waves-light">See the rest of the staff</a></li>
|
||||
<br />
|
||||
</ul>
|
||||
<br />
|
||||
<hr>
|
||||
<br />
|
||||
<div class="row">
|
||||
<div class="col s12 m12 l8">
|
||||
<ul class="useful">
|
||||
<h3 style="text-align: center;">Useful Links</h3>
|
||||
<a href="http://totalfreedom.boards.net" target="_blank" class="readmore waves-effect waves-dark">
|
||||
<li><i class="fa fa-comments icon"></i><br /> Forum</li>
|
||||
</a>
|
||||
<a href="https://totalfreedom.boards.net/thread/65799" target="_blank"
|
||||
class="readmore waves-effect waves-dark">
|
||||
<li><i class="fa fa-ban icon"></i><br /> Conduct Policy</li>
|
||||
</a>
|
||||
<a href="http://github.com/TotalFreedom" target="_blank" class="readmore waves-effect waves-dark">
|
||||
<li><i class="fa fa-github icon"></i><br />Github</li>
|
||||
</a>
|
||||
<a href="https://twitter.com/totalfreedommc" target="_blank"
|
||||
class="readmore waves-effect waves-dark">
|
||||
<li><i class="fa fa-twitter icon"></i><br /> Twitter</li>
|
||||
</a>
|
||||
<a href="https://discord.gg/hdCA22p" target="_blank"
|
||||
class="readmore hide-on-large-only waves-effect waves-dark">
|
||||
<li><img src="images/fa-discord.png" style="width: 27.734; height: 32px;"><br /> Discord</li>
|
||||
</a>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col s12 m12 l4 hide-on-med-and-down">
|
||||
<!-- <h3 style="text-align: center;" class="discord-widget-title">Join our Discord!</h3> -->
|
||||
<iframe src="https://discordapp.com/widget?id=142361999538520065&theme=dark" class="discord-widget"
|
||||
width="375" height="450" align="center" allowtransparency="true" frameborder="0"></iframe>
|
||||
<br>
|
||||
<hr>
|
||||
<br>
|
||||
<p align="center" class="text-align: center;">
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.min.js"></script>
|
||||
<script src="https://use.fontawesome.com/cb2592f0cc.js"></script>
|
||||
<script src="js/index.js"></script>
|
||||
<script src="js/moment.js"></script>
|
||||
<script src="js/jquery.cookies.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
<script src="js/functions.js"></script>
|
||||
<script>
|
||||
// All Json content is loaded respectively into #(item)
|
||||
var jsonUrl="https://totalfreedom.me/tfinfo/";
|
||||
var jsonContent=[ "players"]; $(document).ready(function(){
|
||||
loadJson(jsonUrl, jsonContent);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
<footer class="page-footer transparent">
|
||||
<div class="container">
|
||||
<div class="footer-copyright">
|
||||
<div class="container">
|
||||
<hr>
|
||||
TotalFreedom © 2010 - <span id="curYear"></span>
|
||||
<a class="grey-text text-lighten-4 right" href="https://aggelosqq.com" target="_blank">Designed
|
||||
by aggelosQQ</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.min.js"></script>
|
||||
<script src="https://use.fontawesome.com/cb2592f0cc.js"></script>
|
||||
<script src="js/index.js"></script>
|
||||
<script src="js/moment.js"></script>
|
||||
<script src="js/jquery.cookies.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
<script src="js/functions.js"></script>
|
||||
<script>
|
||||
// All Json content is loaded respectively into #(item)
|
||||
var jsonUrl = "https://totalfreedom.me/tfinfo/";
|
||||
var jsonContent = ["players"];
|
||||
$(document).ready(function () {
|
||||
loadJson(jsonUrl, jsonContent);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
118
js/index.js
118
js/index.js
|
@ -16,15 +16,15 @@
|
|||
|
||||
*/
|
||||
|
||||
$(document).ready(function() {
|
||||
var interval = 15000;
|
||||
var autoRefresh = setTimeout(function() {
|
||||
$(document).ready(function () {
|
||||
var interval = 15000;
|
||||
var autoRefresh = setTimeout(function () {
|
||||
refresh();
|
||||
},
|
||||
interval);
|
||||
|
||||
var refresh = function() {
|
||||
$.getJSON(window.location.origin + "/tfinfo/ping.php", function(json) {
|
||||
var refresh = function () {
|
||||
$.getJSON(window.location.origin + "/tfinfo/ping.php", function (json) {
|
||||
if (json.online !== true) {
|
||||
$("#online").html('<span style="color: firebrick; font-weight: bolder;"> Server is Offline</span><br/><small style="font-size: .5em;">Check out our <a href="https://totalfreedom.boards.net/thread/49450">Associated Servers</a>!</small><p style="font-size: .40em;line-height: 50px;">Last updated ' + json.lastupdated + ' ago</p>');
|
||||
$(".button").hide();
|
||||
|
@ -41,82 +41,82 @@ $(document).ready(function() {
|
|||
});
|
||||
|
||||
|
||||
$(document).ready(function(){
|
||||
$(".one").click(function(){
|
||||
$(".a").fadeToggle(300);
|
||||
$(".one i").toggleClass("fa-chevron-right");
|
||||
$(".one i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
$(document).ready(function () {
|
||||
$(".one").click(function () {
|
||||
$(".a").fadeToggle(300);
|
||||
$(".one i").toggleClass("fa-chevron-right");
|
||||
$(".one i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
|
||||
$(".two").click(function(){
|
||||
$(".b").fadeToggle(300);
|
||||
$(".two i").toggleClass("fa-chevron-right");
|
||||
$(".two i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
$(".two").click(function () {
|
||||
$(".b").fadeToggle(300);
|
||||
$(".two i").toggleClass("fa-chevron-right");
|
||||
$(".two i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
|
||||
$(".three").click(function(){
|
||||
$(".c").fadeToggle(300);
|
||||
$(".three i").toggleClass("fa-chevron-right");
|
||||
$(".three i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
$(".three").click(function () {
|
||||
$(".c").fadeToggle(300);
|
||||
$(".three i").toggleClass("fa-chevron-right");
|
||||
$(".three i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
|
||||
$(".four").click(function(){
|
||||
$(".d").fadeToggle(300);
|
||||
$(".four i").toggleClass("fa-chevron-right");
|
||||
$(".four i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
$(".four").click(function () {
|
||||
$(".d").fadeToggle(300);
|
||||
$(".four i").toggleClass("fa-chevron-right");
|
||||
$(".four i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
|
||||
$(".five").click(function(){
|
||||
$(".e").fadeToggle(300);
|
||||
$(".five i").toggleClass("fa-chevron-right");
|
||||
$(".five i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
$(".five").click(function () {
|
||||
$(".e").fadeToggle(300);
|
||||
$(".five i").toggleClass("fa-chevron-right");
|
||||
$(".five i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
|
||||
$(".six").click(function(){
|
||||
$(".f").fadeToggle(300);
|
||||
$(".six i").toggleClass("fa-chevron-right");
|
||||
$(".six i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
$(".six").click(function () {
|
||||
$(".f").fadeToggle(300);
|
||||
$(".six i").toggleClass("fa-chevron-right");
|
||||
$(".six i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
|
||||
$(".seven").click(function(){
|
||||
$(".g").fadeToggle(300);
|
||||
$(".seven i").toggleClass("fa-chevron-right");
|
||||
$(".seven i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
$(".seven").click(function () {
|
||||
$(".g").fadeToggle(300);
|
||||
$(".seven i").toggleClass("fa-chevron-right");
|
||||
$(".seven i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
|
||||
$(".eight").click(function(){
|
||||
$(".h").fadeToggle(300);
|
||||
$(".eight i").toggleClass("fa-chevron-right");
|
||||
$(".eight i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
$(".eight").click(function () {
|
||||
$(".h").fadeToggle(300);
|
||||
$(".eight i").toggleClass("fa-chevron-right");
|
||||
$(".eight i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
|
||||
$(".nine").click(function(){
|
||||
$(".i").fadeToggle(300);
|
||||
$(".nine i").toggleClass("fa-chevron-right");
|
||||
$(".nine i").toggleClass("fa-chevron-down");
|
||||
|
||||
});
|
||||
$(".nine").click(function () {
|
||||
$(".i").fadeToggle(300);
|
||||
$(".nine i").toggleClass("fa-chevron-right");
|
||||
$(".nine i").toggleClass("fa-chevron-down");
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
$(document).ready(function() {
|
||||
$("#top").click(function() {
|
||||
|
||||
$(document).ready(function () {
|
||||
$("#top").click(function () {
|
||||
$('html, body').animate({
|
||||
scrollTop: $("html, body").offset().top
|
||||
}, 1000);
|
||||
});
|
||||
$("#rules").click(function() {
|
||||
$("#rules").click(function () {
|
||||
$('html, body').animate({
|
||||
scrollTop: $("#rules-sec").offset().top
|
||||
}, 1000);
|
||||
});
|
||||
$("#staff").click(function() {
|
||||
$("#staff").click(function () {
|
||||
$('html, body').animate({
|
||||
scrollTop: $("#staff-sec").offset().top
|
||||
}, 1000);
|
||||
});
|
||||
$("#brand-top").click(function() {
|
||||
$("#brand-top").click(function () {
|
||||
$('html, body').animate({
|
||||
scrollTop: $("html, body").offset().top
|
||||
}, 1000);
|
||||
|
@ -124,7 +124,7 @@ $(document).ready(function() {
|
|||
});
|
||||
|
||||
|
||||
var ypos,cover1,cover2,cover3;
|
||||
var ypos, cover1, cover2, cover3;
|
||||
|
||||
function parallax() {
|
||||
ypos = window.pageYOffset;
|
||||
|
@ -133,4 +133,4 @@ function parallax() {
|
|||
cover1.style.top = ypos * .4 + 'px';
|
||||
};
|
||||
|
||||
window.addEventListener('scroll', parallax);
|
||||
window.addEventListener('scroll', parallax);
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
*/
|
||||
|
||||
$(document).ready(function() {
|
||||
$(document).ready(function () {
|
||||
$(".button-collapse").sideNav({
|
||||
closeOnClick: true
|
||||
});
|
||||
|
@ -26,7 +26,7 @@ $(document).ready(function() {
|
|||
});
|
||||
});
|
||||
|
||||
$(document).ready(function(){
|
||||
$(document).ready(function () {
|
||||
(new Date).getFullYear();
|
||||
$("#curYear").text((new Date).getFullYear());
|
||||
});
|
|
@ -86,7 +86,7 @@ button:focus {
|
|||
}
|
||||
|
||||
.card .card-image img {
|
||||
height: 321.891px!important;
|
||||
height: 321.891px !important;
|
||||
}
|
||||
|
||||
.header {
|
||||
|
@ -164,23 +164,28 @@ hr {
|
|||
font-weight: 200;
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
.header {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.masterbuilders-list li {
|
||||
display: block;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
nav .brand-logo {
|
||||
margin-top: 13.5px;
|
||||
font-size: 1.8em;
|
||||
}
|
||||
nav .nav-wrapper li > a {
|
||||
|
||||
nav .nav-wrapper li>a {
|
||||
font-weight: 500;
|
||||
font-size: 1em;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -16,19 +16,19 @@
|
|||
|
||||
*/
|
||||
|
||||
$(document).ready(function() {
|
||||
$(document).ready(function () {
|
||||
$(".button-collapse").sideNav();
|
||||
|
||||
|
||||
});
|
||||
|
||||
$(function(){
|
||||
$(function () {
|
||||
$(".build").slice(0, 6).show();
|
||||
$("#load").click(function(e){
|
||||
e.preventDefault();
|
||||
$("div:hidden").slice(0, 6).show();
|
||||
if($("div:hidden").length == 0){
|
||||
$("#load").hide();
|
||||
}
|
||||
$("#load").click(function (e) {
|
||||
e.preventDefault();
|
||||
$("div:hidden").slice(0, 6).show();
|
||||
if ($("div:hidden").length == 0) {
|
||||
$("#load").hide();
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
|
@ -24,7 +24,9 @@
|
|||
<title>Master Builders | TotalFreedom Minecraft Server</title>
|
||||
<meta content="aggelosQQ, markbyron, DarthSalamon, Madgeek1450, TotalFreedom" name="author">
|
||||
<meta content="TF,minecraft,totalfreedom,free op,server,worldedit,freebuild" name="keywords">
|
||||
<meta content="TotalFreedom is the first Free OP Minecraft server, which is up and running since 2012! play.totalfreedom.me" name="description">
|
||||
<meta
|
||||
content="TotalFreedom is the first Free OP Minecraft server, which is up and running since 2012! play.totalfreedom.me"
|
||||
name="description">
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css?family=Baloo+Tamma" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600" rel="stylesheet">
|
||||
|
@ -32,17 +34,17 @@
|
|||
<link href="../css/component.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../css/global.css">
|
||||
<link href="../css/main.css" rel="stylesheet">
|
||||
<link rel="icon" href="favicon.png" type="image/png">
|
||||
<link rel="shortcut icon" href="favicon.png" type="image/png">
|
||||
<link rel="icon" href="../favicon.ico" type="icon">
|
||||
<link rel="shortcut icon" href="../favicon.png" type="image/png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="transparent z-depth-0" id="menu">
|
||||
<div class="nav-wrapper z-depth-0">
|
||||
<a class="brand-logo" href="#header">
|
||||
<span class="hide-on-med-and-down">TotalFreedom</span>
|
||||
<span class="show-on-med-and-down">Master Builders</span>
|
||||
</a>
|
||||
<span class="hide-on-med-and-down">TotalFreedom</span>
|
||||
<span class="show-on-med-and-down">Master Builders</span>
|
||||
</a>
|
||||
<a class="button-collapse" data-activates="mobile" href="#"><i class="fa fa-bars"></i></a>
|
||||
<ul class="right hide-on-med-and-down cl-effect-14" id="cl-effect-14">
|
||||
<li>
|
||||
|
@ -71,7 +73,8 @@
|
|||
<br>
|
||||
<hr>
|
||||
<br>
|
||||
<p id="note">These images may, or may not, have been built on Total Freedom but are made by/with at least one masterbuilder from Total Freedom.
|
||||
<p id="note">These images may, or may not, have been built on Total Freedom but are made by/with at least one
|
||||
masterbuilder from Total Freedom.
|
||||
</p>
|
||||
</div>
|
||||
<br>
|
||||
|
@ -81,53 +84,61 @@
|
|||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build1.jpg" target="_blank"><img class="responsive-img" src="assets/images/build1.jpg"></a>
|
||||
<a href="assets/images/build1.jpg" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build1.jpg"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by miwojedk</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://www.planetminecraft.com/project/tropical-island---timelapse/" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://www.planetminecraft.com/project/tropical-island---timelapse/" target="_blank"><button
|
||||
class="waves-effect showmore" type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build2.jpg" target="_blank"><img class="responsive-img" src="assets/images/build2.jpg"></a>
|
||||
<a href="assets/images/build2.jpg" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build2.jpg"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by miwojedk</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://www.planetminecraft.com/project/the-valley-of-oysaria/" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://www.planetminecraft.com/project/the-valley-of-oysaria/" target="_blank"><button
|
||||
class="waves-effect showmore" type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build3.jpg" target="_blank"><img class="responsive-img" src="assets/images/build3.jpg"></a>
|
||||
<a href="assets/images/build3.jpg" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build3.jpg"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by miwojedk</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://www.planetminecraft.com/project/tropical-island---timelapse/" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://www.planetminecraft.com/project/tropical-island---timelapse/" target="_blank"><button
|
||||
class="waves-effect showmore" type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build4.jpg" target="_blank"><img class="responsive-img" src="assets/images/build4.jpg"></a>
|
||||
<a href="assets/images/build4.jpg" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build4.jpg"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by miwojedk</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://www.planetminecraft.com/project/cozy-medieval-cottage/" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://www.planetminecraft.com/project/cozy-medieval-cottage/" target="_blank"><button
|
||||
class="waves-effect showmore" type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -136,82 +147,96 @@
|
|||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<span class="new badge red" data-badge-caption="SPECIAL"></span>
|
||||
<a href="assets/images/build5.jpg" target="_blank"><img class="responsive-img" src="assets/images/build5.jpg"></a>
|
||||
<a href="assets/images/build5.jpg" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build5.jpg"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by miwojedk - this project won the #1 place on PlanetMinecraft Contest (Press "Show More" to see more information)
|
||||
<p>Made by miwojedk - this project won the #1 place on PlanetMinecraft Contest (Press "Show More" to see
|
||||
more information)
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://www.planetminecraft.com/project/the-fallen-colossi-games-survival-games-entry-2178608/" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://www.planetminecraft.com/project/the-fallen-colossi-games-survival-games-entry-2178608/"
|
||||
target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<span class="new badge red" data-badge-caption="SPECIAL"></span>
|
||||
<a href="assets/images/build6.jpg" target="_blank"><img class="responsive-img" src="assets/images/build6.jpg"></a>
|
||||
<a href="assets/images/build6.jpg" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build6.jpg"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by miwojedk - this project won the #1 place on PlanetMinecraft Contest (Press "Show More" to see more information)
|
||||
<p>Made by miwojedk - this project won the #1 place on PlanetMinecraft Contest (Press "Show More" to see
|
||||
more information)
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://www.planetminecraft.com/project/the-fallen-colossi-games-survival-games-entry-2178608/" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://www.planetminecraft.com/project/the-fallen-colossi-games-survival-games-entry-2178608/"
|
||||
target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build7.png" target="_blank"><img class="responsive-img" src="assets/images/build7.png"></a>
|
||||
<a href="assets/images/build7.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build7.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by Dusty01</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action build">
|
||||
<a href="http://totalfreedom.boards.net/user/16464" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/16464" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build8.png" target="_blank"><img class="responsive-img" src="assets/images/build8.png"></a>
|
||||
<a href="assets/images/build8.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build8.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by Dusty01</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/16464" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/16464" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build9.png" target="_blank"><img class="responsive-img" src="assets/images/build9.png"></a>
|
||||
<a href="assets/images/build9.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build9.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by Dusty01</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/16464" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/16464" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build10.png" target="_blank"><img class="responsive-img" src="assets/images/build10.png"></a>
|
||||
<a href="assets/images/build10.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build10.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by UYScutix</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/16480" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/16480" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -219,53 +244,61 @@
|
|||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build11.png" target="_blank" target="_blank"><img class="responsive-img" src="assets/images/build11.png"></a>
|
||||
<a href="assets/images/build11.png" target="_blank" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build11.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by UYScutix</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/16480" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/16480" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build12.png" target="_blank"><img class="responsive-img" src="assets/images/build12.png"></a>
|
||||
<a href="assets/images/build12.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build12.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by UYScutix</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/16480" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/16480" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build13.png" target="_blank"><img class="responsive-img" src="assets/images/build13.png"></a>
|
||||
<a href="assets/images/build13.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build13.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by UYScutix</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/16480" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/16480" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build14.png" target="_blank"><img class="responsive-img" src="assets/images/build14.png"></a>
|
||||
<a href="assets/images/build14.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build14.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by xfilez (Redstoner)</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/5473" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/5473" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -273,174 +306,200 @@
|
|||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build15.png" target="_blank"><img class="responsive-img" src="assets/images/build15.png"></a>
|
||||
<a href="assets/images/build15.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build15.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by xfilez (Redstoner)</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/5473" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/5473" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build16.png" target="_blank"><img class="responsive-img" src="assets/images/build16.png"></a>
|
||||
<a href="assets/images/build16.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build16.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by DDiS</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/5476" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/5476" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build21.png" target="_blank"><img class="responsive-img" src="assets/images/build21.png"></a>
|
||||
<a href="assets/images/build21.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build21.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by DisignusBlocks</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/19057" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/19057" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build22.png" target="_blank"><img class="responsive-img" src="assets/images/build22.png"></a>
|
||||
<a href="assets/images/build22.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build22.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by DisignusBlocks</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/19057" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/19057" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build23.png" target="_blank"><img class="responsive-img" src="assets/images/build23.png"></a>
|
||||
<a href="assets/images/build23.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build23.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by DisignusBlocks</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/19057" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/19057" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build24.png" target="_blank"><img class="responsive-img" src="assets/images/build24.png"></a>
|
||||
<a href="assets/images/build24.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build24.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by DisignusBlocks</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/19057" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/19057" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build25.png" target="_blank"><img class="responsive-img" src="assets/images/build25.png"></a>
|
||||
<a href="assets/images/build25.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build25.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by Nathaniel</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/18920" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/18920" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build26.png" target="_blank"><img class="responsive-img" src="assets/images/build26.png"></a>
|
||||
<a href="assets/images/build26.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build26.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by Nathaniel</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/18920" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/18920" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build27.png" target="_blank"><img class="responsive-img" src="assets/images/build27.png"></a>
|
||||
<a href="assets/images/build27.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build27.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by CaliburnS3 (Redstoner)</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/18956" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/18956" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build28.png" target="_blank"><img class="responsive-img" src="assets/images/build28.png"></a>
|
||||
<a href="assets/images/build28.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build28.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by xfilez (Redstoner)</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/5473" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/5473" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build29.png" target="_blank"><img class="responsive-img" src="assets/images/build29.png"></a>
|
||||
<a href="assets/images/build29.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build29.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by xfilez (Redstoner)</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/5473" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/5473" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="col s12 m12 l6 build">
|
||||
<div class="card">
|
||||
<div class="card-image waves-effect waves-block">
|
||||
<a href="assets/images/build30.png" target="_blank"><img class="responsive-img" src="assets/images/build30.png"></a>
|
||||
<a href="assets/images/build30.png" target="_blank"><img class="responsive-img"
|
||||
src="assets/images/build30.png"></a>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<p>Made by DragonSlayer2189 (Redstoner)</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<a href="http://totalfreedom.boards.net/user/23844" target="_blank"><button class="waves-effect showmore" type="button">Show more</button></a>
|
||||
<a href="http://totalfreedom.boards.net/user/23844" target="_blank"><button class="waves-effect showmore"
|
||||
type="button">Show more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="center">
|
||||
<div class="center">
|
||||
<button class="waves-effect" type="button" id="load">Load More Builds</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF BUILDS -->
|
||||
<h5>If you are masterbuilder, <a href="https://totalfreedom.boards.net/conversation/new/20408" target="_blank">send me your builds!</a></h5>
|
||||
<a class="top" href="#"><i class="fa fa-chevron-up icon"></i></a>
|
||||
</div>
|
||||
<!-- END OF BUILDS -->
|
||||
<h5>If you are masterbuilder, <a href="https://totalfreedom.boards.net/conversation/new/20408" target="_blank">send me
|
||||
your builds!</a></h5>
|
||||
<a class="top" href="#"><i class="fa fa-chevron-up icon"></i></a>
|
||||
</div>
|
||||
<footer class="page-footer transparent">
|
||||
<div class="container">
|
||||
<div class="footer-copyright">
|
||||
<div class="container">
|
||||
<hr> TotalFreedom © 2010 - <span id="curYear"></span>
|
||||
<a class="grey-text text-lighten-4 right" href="https://aggelosqq.com" target="_blank">Designed by aggelosQQ</a>
|
||||
<a class="grey-text text-lighten-4 right" href="https://aggelosqq.com" target="_blank">Designed by
|
||||
aggelosQQ</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -455,16 +514,16 @@
|
|||
<script src="assets/js/builders.js"></script>
|
||||
|
||||
<script>
|
||||
// All Json content is loaded respectively into #(item)
|
||||
var jsonUrl = "https://totalfreedom.me/tfinfo/";
|
||||
var jsonContent = [
|
||||
"masterbuilders"
|
||||
];
|
||||
// All Json content is loaded respectively into #(item)
|
||||
var jsonUrl = "https://totalfreedom.me/tfinfo/";
|
||||
var jsonContent = [
|
||||
"masterbuilders"
|
||||
];
|
||||
|
||||
$(document).ready(function() {
|
||||
loadJson(jsonUrl, jsonContent);
|
||||
});
|
||||
</script>
|
||||
$(document).ready(function () {
|
||||
loadJson(jsonUrl, jsonContent);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
152
staff/index.html
152
staff/index.html
|
@ -1,7 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!--
|
||||
|
||||
<head>
|
||||
<!--
|
||||
Copyright 2017 Aggelos Sarris and contributors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
|
@ -17,78 +18,83 @@
|
|||
limitations under the License.
|
||||
|
||||
-->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Staff | TotalFreedom Minecraft Server</title>
|
||||
<meta name="author" content="aggelosQQ, markbyron, DarthSalamon, Madgeek1450, TotalFreedom">
|
||||
<meta name="kewords" content="TF,minecraft,totalfreedom,free op,server,worldedit,freebuild">
|
||||
<meta name="description" content="TotalFreedom is the first Free OP Minecraft server, which is up and running since 2010! play.totalfreedom.me">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
|
||||
<link href="https://fonts.googleapis.com/css?family=Catamaran:200,300,400" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/css/component.min.css">
|
||||
<link rel="stylesheet" href="/css/global.css">
|
||||
<link rel="stylesheet" href="/css/staff.css">
|
||||
<link async rel="icon" href="favicon.png" type="image/png">
|
||||
<link async rel="shortcut icon" href="favicon.png" type="image/png">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="transparent z-depth-0" id="menu">
|
||||
<div class="nav-wrapper z-depth-0">
|
||||
<a href="#" id="brand-top" class="brand-logo"><span class="hide-on-med-and-down">TotalFreedom</span> Staff Members</a>
|
||||
<a href="#" data-activates="mobile" class="button-collapse"><i class="fa fa-bars"></i></a>
|
||||
<ul class="right hide-on-med-and-down cl-effect-14" id="cl-effect-14">
|
||||
<li><a href="/">Back to Home</a></li>
|
||||
</ul>
|
||||
<ul class="side-nav" id="mobile">
|
||||
<li><a href="/">Back to Home</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<br>
|
||||
<div class="admins">
|
||||
<h2 class="rank">TotalFreedom Developers</h2>
|
||||
<ul id="developers"></ul>
|
||||
<h2 class="rank">TotalFreedom Senior Admins</h2>
|
||||
<ul id="senioradmins"></ul>
|
||||
<h2 class="rank">TotalFreedom Telnet Admins</h2>
|
||||
<ul id="telnetadmins"></ul>
|
||||
<h2 class="rank">TotalFreedom Super Admins</h2>
|
||||
<ul id="superadmins"></ul>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Staff | TotalFreedom Minecraft Server</title>
|
||||
<meta name="author" content="aggelosQQ, markbyron, DarthSalamon, Madgeek1450, TotalFreedom">
|
||||
<meta name="kewords" content="TF,minecraft,totalfreedom,free op,server,worldedit,freebuild">
|
||||
<meta name="description"
|
||||
content="TotalFreedom is the first Free OP Minecraft server, which is up and running since 2010! play.totalfreedom.me">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
|
||||
<link href="https://fonts.googleapis.com/css?family=Catamaran:200,300,400" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/css/component.min.css">
|
||||
<link rel="stylesheet" href="/css/global.css">
|
||||
<link rel="stylesheet" href="/css/staff.css">
|
||||
<link async rel="icon" href="favicon.png" type="image/png">
|
||||
<link async rel="shortcut icon" href="favicon.png" type="image/png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="transparent z-depth-0" id="menu">
|
||||
<div class="nav-wrapper z-depth-0">
|
||||
<a href="#" id="brand-top" class="brand-logo"><span class="hide-on-med-and-down">TotalFreedom</span> Staff
|
||||
Members</a>
|
||||
<a href="#" data-activates="mobile" class="button-collapse"><i class="fa fa-bars"></i></a>
|
||||
<ul class="right hide-on-med-and-down cl-effect-14" id="cl-effect-14">
|
||||
<li><a href="/">Back to Home</a></li>
|
||||
</ul>
|
||||
<ul class="side-nav" id="mobile">
|
||||
<li><a href="/">Back to Home</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<footer class="page-footer transparent">
|
||||
<div class="container">
|
||||
<div class="footer-copyright">
|
||||
<div class="container">
|
||||
<hr>
|
||||
TotalFreedom © 2012 - <span id="curYear"></span>.
|
||||
<a class="grey-text text-lighten-4 right" href="https://aggelosqq.github.io" target="_blank">Made by aggelosQQ</a>
|
||||
</div>
|
||||
</nav>
|
||||
<br>
|
||||
<div class="admins">
|
||||
<h2 class="rank">TotalFreedom Developers</h2>
|
||||
<ul id="developers"></ul>
|
||||
<h2 class="rank">TotalFreedom Senior Admins</h2>
|
||||
<ul id="senioradmins"></ul>
|
||||
<h2 class="rank">TotalFreedom Telnet Admins</h2>
|
||||
<ul id="telnetadmins"></ul>
|
||||
<h2 class="rank">TotalFreedom Super Admins</h2>
|
||||
<ul id="superadmins"></ul>
|
||||
</div>
|
||||
<footer class="page-footer transparent">
|
||||
<div class="container">
|
||||
<div class="footer-copyright">
|
||||
<div class="container">
|
||||
<hr>
|
||||
TotalFreedom © 2012 - <span id="curYear"></span>.
|
||||
<a class="grey-text text-lighten-4 right" href="https://aggelosqq.github.io" target="_blank">Made by
|
||||
aggelosQQ</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.min.js"></script>
|
||||
<script src="../js/typed.js"></script>
|
||||
<script src="../js/moment.js"></script>
|
||||
<script src="../js/jquery.cookies.js"></script>
|
||||
<script src="../js/functions.js"></script>
|
||||
<script src="../js/main.js"></script>
|
||||
<script src="https://use.fontawesome.com/cb2592f0cc.js"></script>
|
||||
<script>
|
||||
// All Json content is loaded respectively into #(item)
|
||||
var jsonUrl = "https://totalfreedom.me/tfinfo/";
|
||||
var jsonContent = [
|
||||
"developers",
|
||||
"superadmins",
|
||||
"telnetadmins",
|
||||
"senioradmins"
|
||||
];
|
||||
|
||||
$(document).ready(function() {
|
||||
loadJson(jsonUrl, jsonContent);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.min.js"></script>
|
||||
<script src="../js/typed.js"></script>
|
||||
<script src="../js/moment.js"></script>
|
||||
<script src="../js/jquery.cookies.js"></script>
|
||||
<script src="../js/functions.js"></script>
|
||||
<script src="../js/main.js"></script>
|
||||
<script src="https://use.fontawesome.com/cb2592f0cc.js"></script>
|
||||
<script>
|
||||
// All Json content is loaded respectively into #(item)
|
||||
var jsonUrl = "https://totalfreedom.me/tfinfo/";
|
||||
var jsonContent = [
|
||||
"developers",
|
||||
"superadmins",
|
||||
"telnetadmins",
|
||||
"senioradmins"
|
||||
];
|
||||
|
||||
$(document).ready(function () {
|
||||
loadJson(jsonUrl, jsonContent);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue