mirror of
https://github.com/TotalFreedomMC/Website.git
synced 2024-12-22 16:25:12 +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
|
@ -1,9 +1,11 @@
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title>Admin Application Calculator</title>
|
<title>Admin Application Calculator</title>
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Admin Application Calculator</h1>
|
<h1>Admin Application Calculator</h1>
|
||||||
<div class="form">
|
<div class="form">
|
||||||
|
@ -77,4 +79,5 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
|
@ -5,8 +5,7 @@ var rounded_percentage = 0;
|
||||||
var application_type = "super";
|
var application_type = "super";
|
||||||
var approved = false;
|
var approved = false;
|
||||||
|
|
||||||
function submit_vote(points)
|
function submit_vote(points) {
|
||||||
{
|
|
||||||
total_points += points;
|
total_points += points;
|
||||||
total_votes++;
|
total_votes++;
|
||||||
percentage = (total_points / total_votes) * 100;
|
percentage = (total_points / total_votes) * 100;
|
||||||
|
@ -14,38 +13,27 @@ function submit_vote(points)
|
||||||
update_score();
|
update_score();
|
||||||
}
|
}
|
||||||
|
|
||||||
function update_score()
|
function update_score() {
|
||||||
{
|
|
||||||
document.getElementById("points").innerHTML = total_points;
|
document.getElementById("points").innerHTML = total_points;
|
||||||
document.getElementById("total_votes").innerHTML = total_votes;
|
document.getElementById("total_votes").innerHTML = total_votes;
|
||||||
document.getElementById("rounded_percentage").innerHTML = rounded_percentage;
|
document.getElementById("rounded_percentage").innerHTML = rounded_percentage;
|
||||||
document.getElementById("percentage").innerHTML = percentage;
|
document.getElementById("percentage").innerHTML = percentage;
|
||||||
application_type = document.getElementById("type").value;
|
application_type = document.getElementById("type").value;
|
||||||
|
|
||||||
if (application_type == "super" && rounded_percentage >= 60)
|
if (application_type == "super" && rounded_percentage >= 60) {
|
||||||
{
|
|
||||||
approved = true;
|
approved = true;
|
||||||
}
|
} else if (application_type == "telnet" && rounded_percentage >= 65) {
|
||||||
else if (application_type == "telnet" && rounded_percentage >= 65)
|
|
||||||
{
|
|
||||||
approved = true;
|
approved = true;
|
||||||
}
|
} else if (application_type == "senior" && rounded_percentage >= 70) {
|
||||||
else if (application_type == "senior" && rounded_percentage >= 70)
|
|
||||||
{
|
|
||||||
approved = true;
|
approved = true;
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
approved = false;
|
approved = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (approved)
|
if (approved) {
|
||||||
{
|
|
||||||
document.getElementById("status").style = "color: #0f0;";
|
document.getElementById("status").style = "color: #0f0;";
|
||||||
document.getElementById("status").innerHTML = "Accepted";
|
document.getElementById("status").innerHTML = "Accepted";
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
document.getElementById("status").style = "color: #f00;";
|
document.getElementById("status").style = "color: #f00;";
|
||||||
document.getElementById("status").innerHTML = "Denied";
|
document.getElementById("status").innerHTML = "Denied";
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,6 +30,7 @@ select {
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
select::before {
|
select::before {
|
||||||
border-bottom-style: solid;
|
border-bottom-style: solid;
|
||||||
|
|
|
@ -2,10 +2,12 @@ body {
|
||||||
background: #222 url("../images/conduct-bg.png") fixed no-repeat center center;
|
background: #222 url("../images/conduct-bg.png") fixed no-repeat center center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'Roboto', sans-serif;
|
||||||
margin-bottom: 50px; }
|
margin-bottom: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
.brand-logo {
|
.brand-logo {
|
||||||
font-family: 'Raleway', sans-serif !important; }
|
font-family: 'Raleway', sans-serif !important;
|
||||||
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
margin: 50px auto;
|
margin: 50px auto;
|
||||||
|
@ -13,30 +15,43 @@ body {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
color: #eee;
|
color: #eee;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: rgba(34, 34, 34, 0.6); }
|
background: rgba(34, 34, 34, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
.content h1 {
|
.content h1 {
|
||||||
margin-top: 5.17241px;
|
margin-top: 5.17241px;
|
||||||
font-size: 1.3em;
|
font-size: 1.3em;
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
border-bottom: 1px solid #ccc;
|
border-bottom: 1px solid #ccc;
|
||||||
padding: 0 0 10px; }
|
padding: 0 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.content h3 {
|
.content h3 {
|
||||||
font-size: 1.05em;
|
font-size: 1.05em;
|
||||||
font-weight: 600; }
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
.content li {
|
.content li {
|
||||||
padding: 5px; }
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
.content .warning {
|
.content .warning {
|
||||||
color: #F44336;
|
color: #F44336;
|
||||||
padding: 1px 10px;
|
padding: 1px 10px;
|
||||||
border-left: 3px solid #F44336;
|
border-left: 3px solid #F44336;
|
||||||
display: block; }
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
.content a {
|
.content a {
|
||||||
color: #bbb;
|
color: #bbb;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
-webkit-transition: all .3s ease-in-out;
|
-webkit-transition: all .3s ease-in-out;
|
||||||
-o-transition: all .3s ease-in-out;
|
-o-transition: all .3s ease-in-out;
|
||||||
transition: all .3s ease-in-out;
|
transition: all .3s ease-in-out;
|
||||||
border-bottom: 1px hidden #ccc; }
|
border-bottom: 1px hidden #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
.content a:hover {
|
.content a:hover {
|
||||||
border-bottom: 1px solid #ccc; }
|
border-bottom: 1px solid #ccc;
|
||||||
|
}
|
19
css/main.css
19
css/main.css
|
@ -23,6 +23,7 @@ body {
|
||||||
padding: 10px 55px;
|
padding: 10px 55px;
|
||||||
background: rgba(255, 255, 255, 0.1);
|
background: rgba(255, 255, 255, 0.1);
|
||||||
color: #c8c8c8;
|
color: #c8c8c8;
|
||||||
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
#rules-title:hover,
|
#rules-title:hover,
|
||||||
|
@ -82,7 +83,8 @@ body {
|
||||||
.rule {
|
.rule {
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
display: none;
|
display: none;
|
||||||
padding: 30px
|
padding: 30px;
|
||||||
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
#rules-title,
|
#rules-title,
|
||||||
|
@ -435,7 +437,8 @@ footer.page-footer .footer-copyright {
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
color: rgba(255, 255, 255, 0.6);
|
color: rgba(255, 255, 255, 0.6);
|
||||||
font-size: 1.35em;text-align: center;
|
font-size: 1.35em;
|
||||||
|
text-align: center;
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -456,30 +459,37 @@ h3 {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width:991px) {
|
@media only screen and (max-width:991px) {
|
||||||
|
|
||||||
.cover-2 h2,
|
.cover-2 h2,
|
||||||
.cover-2 p {
|
.cover-2 p {
|
||||||
width: 100%
|
width: 100%
|
||||||
}
|
}
|
||||||
|
|
||||||
.online-part {
|
.online-part {
|
||||||
padding: 25% .7%
|
padding: 25% .7%
|
||||||
}
|
}
|
||||||
|
|
||||||
.rule {
|
.rule {
|
||||||
padding: 15px
|
padding: 15px
|
||||||
}
|
}
|
||||||
|
|
||||||
.useful {
|
.useful {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin: 0
|
margin: 0
|
||||||
}
|
}
|
||||||
|
|
||||||
.discord-widget {
|
.discord-widget {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
-webkit-transform: translateX(25%);
|
-webkit-transform: translateX(25%);
|
||||||
-ms-transform: translateX(25%);
|
-ms-transform: translateX(25%);
|
||||||
transform: translateX(25%)
|
transform: translateX(25%)
|
||||||
}
|
}
|
||||||
|
|
||||||
.admins>ul>a {
|
.admins>ul>a {
|
||||||
display: block;
|
display: block;
|
||||||
border-radius: 0
|
border-radius: 0
|
||||||
}
|
}
|
||||||
|
|
||||||
.head-icon {
|
.head-icon {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
|
@ -487,21 +497,26 @@ h3 {
|
||||||
float: left;
|
float: left;
|
||||||
border-radius: 50%
|
border-radius: 50%
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal li {
|
.modal li {
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 5px 70px
|
padding: 5px 70px
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-msg {
|
.modal-msg {
|
||||||
margin: 25px 0;
|
margin: 25px 0;
|
||||||
padding: 5px
|
padding: 5px
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-wrapper {
|
.nav-wrapper {
|
||||||
background: #111
|
background: #111
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal.modal-fixed-footer .modal-content {
|
.modal.modal-fixed-footer .modal-content {
|
||||||
padding: 10px
|
padding: 10px
|
||||||
}
|
}
|
||||||
|
|
||||||
nav .nav-wrapper li>a {
|
nav .nav-wrapper li>a {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 1em
|
font-size: 1em
|
||||||
|
|
203
index.html
203
index.html
|
@ -1,5 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<!--
|
<!--
|
||||||
Copyright 2017 Aggelos Sarris and contributors
|
Copyright 2017 Aggelos Sarris and contributors
|
||||||
|
@ -23,21 +24,34 @@
|
||||||
<title>Home | TotalFreedom Minecraft Server</title>
|
<title>Home | TotalFreedom Minecraft Server</title>
|
||||||
<meta name="author" content="aggelosQQ, scripthead">
|
<meta name="author" content="aggelosQQ, scripthead">
|
||||||
<meta name="keywords" content="TF,minecraft,totalfreedom,free op,server,worldedit,freebuild">
|
<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">
|
<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 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="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/component.min.css">
|
||||||
<link async rel="stylesheet" href="css/global.css">
|
<link async rel="stylesheet" href="css/global.css">
|
||||||
<link async rel="stylesheet" href="css/main.css">
|
<link async rel="stylesheet" href="css/main.css">
|
||||||
<link async rel="icon" href="favicon.png" type="image/png">
|
<link async rel="icon" href="favicon.png" type="image/png">
|
||||||
<link async rel="shortcut 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>
|
<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>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="navbar-fixed">
|
<div class="navbar-fixed">
|
||||||
<nav class="transparent z-depth-0" id="menu">
|
<nav class="transparent z-depth-0" id="menu">
|
||||||
<div class="nav-wrapper z-depth-0">
|
<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="#" 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>
|
<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">
|
<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="top">Home</a></li>
|
||||||
|
@ -45,7 +59,9 @@
|
||||||
<li><a href="/emailappeal">Email Appeal</a></li>
|
<li><a href="/emailappeal">Email Appeal</a></li>
|
||||||
<li><a href="#" id="staff">Staff</a></li>
|
<li><a href="#" id="staff">Staff</a></li>
|
||||||
<li><a href="/masterbuilders">Masterbuilders</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://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>
|
||||||
<ul class="side-nav" id="mobile">
|
<ul class="side-nav" id="mobile">
|
||||||
<li><a href="#header">Home</a></li>
|
<li><a href="#header">Home</a></li>
|
||||||
|
@ -58,7 +74,8 @@
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
<a href="https://github.com/TFPatches/Website" class="github" aria-hidden="true"><span class="github-icon"></span> Edit on GitHub</a>
|
<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="section active cover-1" id="header">
|
||||||
<div class="online-part">
|
<div class="online-part">
|
||||||
<h3 id="server-status"> <span id="online"></span></h3>
|
<h3 id="server-status"> <span id="online"></span></h3>
|
||||||
|
@ -77,140 +94,205 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<a href="#!" class="modal-action modal-close btn-flat waves-effect waves-dark">I'm Done</a>
|
<a href="#!" class="modal-action modal-close btn-flat waves-effect waves-dark">Close</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="section cover-2" id="rules-sec">
|
<div class="section cover-2" id="rules-sec">
|
||||||
<h1 class="section-title">Server Rules</h1>
|
<div class="container">
|
||||||
|
<h1 class="section-title">Server Conduct Policy</h1>
|
||||||
<div class="rules-section">
|
<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>
|
<h2 id="rules-title" class="one waves-effect waves-brown">Category 1 (Permanent Bannable Offenses) <i
|
||||||
<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>
|
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>
|
||||||
<div class="rules-section">
|
<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>
|
<h2 id="rules-title" class="two waves-effect waves-brown">Category 2 (Temporary Bannable Offenses) <i
|
||||||
<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>
|
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>
|
||||||
<div class="rules-section">
|
<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>
|
<h2 id="rules-title" class="three waves-effect waves-brown">Category 3 (Minor Offenses) <i
|
||||||
<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>
|
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>
|
||||||
<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>
|
|
||||||
</div>
|
</div>
|
||||||
<!--<p class="caution" style="margin-bottom: -45px;"><i class="fa fa-exclamation-triangle"></i> TotalFreedom does not accept donations.</p>-->
|
<!--<p class="caution" style="margin-bottom: -45px;"><i class="fa fa-exclamation-triangle"></i> TotalFreedom does not accept donations.</p>-->
|
||||||
<ul class="rest">
|
<ul class="rest">
|
||||||
<li>
|
<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>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h1 class="section-title">Support/Help</h1>
|
<h1 class="section-title">Support/Help</h1>
|
||||||
<div class="rules-section">
|
<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>
|
<h2 id="rules-title" class="six">Saving Builds <i
|
||||||
<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>
|
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>
|
||||||
<div class="rules-section">
|
<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>
|
<h2 id="rules-title" class="seven">Flatlands <i
|
||||||
<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>
|
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>
|
||||||
<div class="rules-section">
|
<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>
|
<h2 id="rules-title" class="eight">Gamemodes <i
|
||||||
<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>
|
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>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="section cover-3" id="staff-sec">
|
<div class="section cover-3" id="staff-sec">
|
||||||
<br />
|
<br />
|
||||||
<h1 class="section-title" style="margin-bottom: 10px;">Upper-Level Staff Members</h1>
|
<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">
|
<div class="admins">
|
||||||
<h2 class="rank">Executives</h2>
|
<h2 class="rank">Executives</h2>
|
||||||
<ul id="executiveboard">
|
<ul id="executiveboard">
|
||||||
<a href="https://totalfreedom.boards.net/user/20408" target="_blank" class="waves-effect waves-dark">
|
<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>
|
||||||
<a href="https://totalfreedom.boards.net/user/3" target="_blank" class="waves-effect waves-dark">
|
<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>
|
||||||
<a href="https://totalfreedom.boards.net/user/1514" target="_blank" class="waves-effect waves-dark">
|
<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>
|
||||||
<a href="https://totalfreedom.boards.net/user/1" target="_blank" class="waves-effect waves-dark">
|
<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>
|
||||||
<a href="https://totalfreedom.boards.net/user/22952" target="_blank" class="waves-effect waves-dark">
|
<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>
|
||||||
<a href="https://totalfreedom.boards.net/user/23874" target="_blank" class="waves-effect waves-dark">
|
<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>
|
||||||
<a href="https://totalfreedom.boards.net/user/19507" target="_blank" class="waves-effect waves-dark">
|
<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>
|
</a>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 class="rank">Assistant Executives</h2>
|
<h2 class="rank">Assistant Executives</h2>
|
||||||
<ul id="assistexecboard">
|
<ul id="assistexecboard">
|
||||||
<a href="https://totalfreedom.boards.net/user/22775" target="_blank" class="waves-effect waves-dark">
|
<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>
|
||||||
<a href="https://totalfreedom.boards.net/user/23832" target="_blank" class="waves-effect waves-dark">
|
<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>
|
||||||
<a href="https://totalfreedom.boards.net/user/23930" target="_blank" class="waves-effect waves-dark">
|
<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>
|
||||||
<a href="https://totalfreedom.boards.net/user/5863" target="_blank" class="waves-effect waves-dark">
|
<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>
|
||||||
<a href="https://totalfreedom.boards.net/user/21917" target="_blank" class="waves-effect waves-dark">
|
<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>
|
</a>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 class="rank">Forum Staff</h2>
|
<h2 class="rank">Forum Staff</h2>
|
||||||
<ul id="modboard">
|
<ul id="modboard">
|
||||||
<a href="https://totalfreedom.boards.net/user/1" target="_blank" class="waves-effect waves-dark">
|
<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>
|
<li> <img src="https://mc-heads.net/avatar/Finest95/32.png" class="responsive-img head-icon">Finest95 -
|
||||||
|
Forum Admin</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://totalfreedom.boards.net/user/20408" target="_blank" class="waves-effect waves-dark">
|
<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>
|
<li> <img src="https://mc-heads.net/avatar/scripthead/32.png" class="responsive-img head-icon">scripthead
|
||||||
|
- Forum Admin</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://totalfreedom.boards.net/user/10099" target="_blank" class="waves-effect waves-dark">
|
<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>
|
<li> <img src="https://mc-heads.net/avatar/StevenNL2000/32.png"
|
||||||
|
class="responsive-img head-icon">StevenNL2000 - Forum Admin</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://totalfreedom.boards.net/user/22952" target="_blank" class="waves-effect waves-dark">
|
<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>
|
<li> <img src="https://mc-heads.net/avatar/zeseryu/32.png" class="responsive-img head-icon">zeseryu -
|
||||||
|
Forum Admin</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://totalfreedom.boards.net/user/10700" target="_blank" class="waves-effect waves-dark">
|
<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>
|
<li> <img src="https://mc-heads.net/avatar/JJ_Jaguar2000/32.png"
|
||||||
|
class="responsive-img head-icon">JJ_Jaguar2000 - Forum Mod</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://totalfreedom.boards.net/user/84" target="_blank" class="waves-effect waves-dark">
|
<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>
|
<li> <img src="https://mc-heads.net/avatar/Cowgomooo12/32.png"
|
||||||
|
class="responsive-img head-icon">Cowgomooo12 - Forum Mod</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://totalfreedom.boards.net/user/3448" target="_blank" class="waves-effect waves-dark">
|
<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>
|
<li> <img src="https://mc-heads.net/avatar/TheMinecraft/32.png"
|
||||||
|
class="responsive-img head-icon">TheMinecraft - Forum Mod</li>
|
||||||
</a>
|
</a>
|
||||||
</ul>
|
</ul>
|
||||||
<h1 class="rank">Internal Affairs</h1>
|
<h1 class="rank">Internal Affairs</h1>
|
||||||
<ul id="internalaffairs">
|
<ul id="internalaffairs">
|
||||||
<a href="https://totalfreedom.boards.net/user/23832" target="_blank" class="waves-effect waves-dark">
|
<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>
|
<li> <img src="https://mc-heads.net/avatar/Zevante/32.png" class="responsive-img head-icon">Zevante -
|
||||||
|
Leader</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://totalfreedom.boards.net/user/23037" target="_blank" class="waves-effect waves-dark">
|
<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>
|
<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">
|
<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>
|
||||||
<a href="https://totalfreedom.boards.net/user/22775" target="_blank" class="waves-effect waves-dark">
|
<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>
|
<li> <img src="https://mc-heads.net/avatar/fionnn/32.png" class="responsive-img head-icon">fionnn</li>
|
||||||
</a>
|
</a>
|
||||||
|
<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>
|
</ul>
|
||||||
<div class="container">
|
</div>
|
||||||
|
<div class="center">
|
||||||
<ul class="rest">
|
<ul class="rest">
|
||||||
<li><a href="/staff" class="readmore waves-effect waves-light">See the rest of the staff</a></li>
|
<li><a href="/staff" class="readmore waves-effect waves-light">See the rest of the staff</a></li>
|
||||||
<br />
|
<br />
|
||||||
|
@ -225,23 +307,27 @@
|
||||||
<a href="http://totalfreedom.boards.net" target="_blank" class="readmore waves-effect waves-dark">
|
<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>
|
<li><i class="fa fa-comments icon"></i><br /> Forum</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://totalfreedom.boards.net/thread/65799" target="_blank" class="readmore waves-effect waves-dark">
|
<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>
|
<li><i class="fa fa-ban icon"></i><br /> Conduct Policy</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="http://github.com/TotalFreedom" target="_blank" class="readmore waves-effect waves-dark">
|
<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>
|
<li><i class="fa fa-github icon"></i><br />Github</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://twitter.com/totalfreedommc" target="_blank" class="readmore waves-effect waves-dark">
|
<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>
|
<li><i class="fa fa-twitter icon"></i><br /> Twitter</li>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://discord.gg/hdCA22p" target="_blank" class="readmore hide-on-large-only waves-effect waves-dark">
|
<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>
|
<li><img src="images/fa-discord.png" style="width: 27.734; height: 32px;"><br /> Discord</li>
|
||||||
</a>
|
</a>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col s12 m12 l4 hide-on-med-and-down">
|
<div class="col s12 m12 l4 hide-on-med-and-down">
|
||||||
<!-- <h3 style="text-align: center;" class="discord-widget-title">Join our Discord!</h3> -->
|
<!-- <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>
|
<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>
|
<br>
|
||||||
<hr>
|
<hr>
|
||||||
<br>
|
<br>
|
||||||
|
@ -254,7 +340,8 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<hr>
|
<hr>
|
||||||
TotalFreedom © 2010 - <span id="curYear"></span>
|
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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -271,9 +358,11 @@
|
||||||
<script>
|
<script>
|
||||||
// All Json content is loaded respectively into #(item)
|
// All Json content is loaded respectively into #(item)
|
||||||
var jsonUrl = "https://totalfreedom.me/tfinfo/";
|
var jsonUrl = "https://totalfreedom.me/tfinfo/";
|
||||||
var jsonContent=[ "players"]; $(document).ready(function(){
|
var jsonContent = ["players"];
|
||||||
|
$(document).ready(function () {
|
||||||
loadJson(jsonUrl, jsonContent);
|
loadJson(jsonUrl, jsonContent);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
|
@ -164,21 +164,26 @@ hr {
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
.header {
|
.header {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.masterbuilders-list li {
|
.masterbuilders-list li {
|
||||||
display: block;
|
display: block;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
width: 95%;
|
width: 95%;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav .brand-logo {
|
nav .brand-logo {
|
||||||
margin-top: 13.5px;
|
margin-top: 13.5px;
|
||||||
font-size: 1.8em;
|
font-size: 1.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav .nav-wrapper li>a {
|
nav .nav-wrapper li>a {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
|
|
|
@ -24,7 +24,9 @@
|
||||||
<title>Master Builders | TotalFreedom Minecraft Server</title>
|
<title>Master Builders | TotalFreedom Minecraft Server</title>
|
||||||
<meta content="aggelosQQ, markbyron, DarthSalamon, Madgeek1450, TotalFreedom" name="author">
|
<meta content="aggelosQQ, markbyron, DarthSalamon, Madgeek1450, TotalFreedom" name="author">
|
||||||
<meta content="TF,minecraft,totalfreedom,free op,server,worldedit,freebuild" name="keywords">
|
<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://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=Baloo+Tamma" rel="stylesheet">
|
||||||
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600" rel="stylesheet">
|
||||||
|
@ -32,8 +34,8 @@
|
||||||
<link href="../css/component.min.css" rel="stylesheet">
|
<link href="../css/component.min.css" rel="stylesheet">
|
||||||
<link rel="stylesheet" href="../css/global.css">
|
<link rel="stylesheet" href="../css/global.css">
|
||||||
<link href="../css/main.css" rel="stylesheet">
|
<link href="../css/main.css" rel="stylesheet">
|
||||||
<link rel="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">
|
<link rel="shortcut icon" href="../favicon.png" type="image/png">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -71,7 +73,8 @@
|
||||||
<br>
|
<br>
|
||||||
<hr>
|
<hr>
|
||||||
<br>
|
<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>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
|
@ -81,53 +84,61 @@
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by miwojedk</p>
|
<p>Made by miwojedk</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by miwojedk</p>
|
<p>Made by miwojedk</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by miwojedk</p>
|
<p>Made by miwojedk</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by miwojedk</p>
|
<p>Made by miwojedk</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -136,82 +147,96 @@
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<div class="card-image waves-effect waves-block">
|
||||||
<span class="new badge red" data-badge-caption="SPECIAL"></span>
|
<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>
|
||||||
<div class="card-content">
|
<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>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<div class="card-image waves-effect waves-block">
|
||||||
<span class="new badge red" data-badge-caption="SPECIAL"></span>
|
<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>
|
||||||
<div class="card-content">
|
<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>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by Dusty01</p>
|
<p>Made by Dusty01</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action build">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by Dusty01</p>
|
<p>Made by Dusty01</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by Dusty01</p>
|
<p>Made by Dusty01</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by UYScutix</p>
|
<p>Made by UYScutix</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -219,53 +244,61 @@
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by UYScutix</p>
|
<p>Made by UYScutix</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by UYScutix</p>
|
<p>Made by UYScutix</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by UYScutix</p>
|
<p>Made by UYScutix</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by xfilez (Redstoner)</p>
|
<p>Made by xfilez (Redstoner)</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -273,157 +306,181 @@
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by xfilez (Redstoner)</p>
|
<p>Made by xfilez (Redstoner)</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by DDiS</p>
|
<p>Made by DDiS</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by DisignusBlocks</p>
|
<p>Made by DisignusBlocks</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by DisignusBlocks</p>
|
<p>Made by DisignusBlocks</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by DisignusBlocks</p>
|
<p>Made by DisignusBlocks</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by DisignusBlocks</p>
|
<p>Made by DisignusBlocks</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by Nathaniel</p>
|
<p>Made by Nathaniel</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by Nathaniel</p>
|
<p>Made by Nathaniel</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by CaliburnS3 (Redstoner)</p>
|
<p>Made by CaliburnS3 (Redstoner)</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by xfilez (Redstoner)</p>
|
<p>Made by xfilez (Redstoner)</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by xfilez (Redstoner)</p>
|
<p>Made by xfilez (Redstoner)</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="col s12 m12 l6 build">
|
<div class="col s12 m12 l6 build">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-image waves-effect waves-block">
|
<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>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p>Made by DragonSlayer2189 (Redstoner)</p>
|
<p>Made by DragonSlayer2189 (Redstoner)</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-action">
|
<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>
|
</div>
|
||||||
<div class="center">
|
<div class="center">
|
||||||
|
@ -432,7 +489,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- END OF BUILDS -->
|
<!-- 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>
|
<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>
|
<a class="top" href="#"><i class="fa fa-chevron-up icon"></i></a>
|
||||||
</div>
|
</div>
|
||||||
<footer class="page-footer transparent">
|
<footer class="page-footer transparent">
|
||||||
|
@ -440,7 +498,8 @@
|
||||||
<div class="footer-copyright">
|
<div class="footer-copyright">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<hr> TotalFreedom © 2010 - <span id="curYear"></span>
|
<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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<!--
|
<!--
|
||||||
Copyright 2017 Aggelos Sarris and contributors
|
Copyright 2017 Aggelos Sarris and contributors
|
||||||
|
@ -23,7 +24,8 @@
|
||||||
<title>Staff | TotalFreedom Minecraft Server</title>
|
<title>Staff | TotalFreedom Minecraft Server</title>
|
||||||
<meta name="author" content="aggelosQQ, markbyron, DarthSalamon, Madgeek1450, TotalFreedom">
|
<meta name="author" content="aggelosQQ, markbyron, DarthSalamon, Madgeek1450, TotalFreedom">
|
||||||
<meta name="kewords" content="TF,minecraft,totalfreedom,free op,server,worldedit,freebuild">
|
<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">
|
<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 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=Catamaran:200,300,400" rel="stylesheet">
|
||||||
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600" rel="stylesheet">
|
||||||
|
@ -33,10 +35,12 @@
|
||||||
<link async rel="icon" href="favicon.png" type="image/png">
|
<link async rel="icon" href="favicon.png" type="image/png">
|
||||||
<link async rel="shortcut icon" href="favicon.png" type="image/png">
|
<link async rel="shortcut icon" href="favicon.png" type="image/png">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<nav class="transparent z-depth-0" id="menu">
|
<nav class="transparent z-depth-0" id="menu">
|
||||||
<div class="nav-wrapper z-depth-0">
|
<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="#" 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>
|
<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">
|
<ul class="right hide-on-med-and-down cl-effect-14" id="cl-effect-14">
|
||||||
<li><a href="/">Back to Home</a></li>
|
<li><a href="/">Back to Home</a></li>
|
||||||
|
@ -63,7 +67,8 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<hr>
|
<hr>
|
||||||
TotalFreedom © 2012 - <span id="curYear"></span>.
|
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>
|
<a class="grey-text text-lighten-4 right" href="https://aggelosqq.github.io" target="_blank">Made by
|
||||||
|
aggelosQQ</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -91,4 +96,5 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in a new issue