-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (118 loc) · 5.11 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TvE | True Vanilla Experiment</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon/favicon-16x16.png">
<link rel="manifest" href="/img/favicon/site.webmanifest">
<link rel="mask-icon" href="/img/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/img/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/img/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<div class="logo">
<div class="logo-image">
<img id="logos" src="img/logo.png" alt="" width="100"/>
<img id="logob" src="img/logo2.png" alt="" height="100" />
<div class="version-wrapper"><p>Version: <span id="version">1.18.2</span></p></div>
</div>
<div class="players-wrapper"><p><span id="online-icon"></span><span id="player-count"></span> Players Online</p></div>
</div>
<div class="navbar">
<ul class="links">
<li class="navlink"><a class="link" href="#">HOME</a></li>
<li class="navlink"><a class="link" href="https://wiki.truevanilla.org">WIKI</a></li>
<li class="navlink"><a class="link" href="https://minecraft-mp.com/server/291749/vote/" target="_blank">VOTE</a></li>
<li class="navlink"><a class="link" href="https://www.youtube.com/watch?v=DLzxrzFCyOs" target="_blank">STATISTICS</a></li>
<li class="navlink"><a class="link" href="https://www.paypal.com/donate/?hosted_button_id=LRGTTCUWUHD2J" target="_blank">DONATE</a></li>
</ul>
</div>
</nav>
<main>
<div class="welcome">
</div>
<div class="hero">
<div class="hero-left">
<img src="img/banner1.png" alt="" />
<img id="join-button" src="img/yesil.png" alt="" onclick="copyIP()"/>
</div>
<div class="hero-right"></div>
</div>
<div class="about">
<div class="about-left">
<h2>ABOUT TRUE VANILLA</h2>
<p class="server-about">
TVE is an anarchy Minecraft server that tries to stay as vanilla as possible as well as stick to the current version of Minecraft.
That means there are no rules, griefing is allowed, and so is the use of hacked clients (with the exception of Timer related cheats).
</p>
<div class="socials">
<a href="https://www.reddit.com/r/TrueVanillaExperiment/" target="_blank"><img src="img/socials/reddit.png" alt="" /></a>
<a href="https://www.instagram.com/truevanillaexperiment/" target="_blank"><img src="img/socials/insta.png" alt="" /></a>
<a href="https://discord.gg/FGx3hDbvMB" target="_blank"><img src="img/socials/discord.png" alt="" /></a>
</div>
</div>
<div class="about-right">
<img src="img/vec1.png" alt="" />
</div>
</div>
<div class="action">
<div class="action-left">
<h2>Hey you!</h2>
<h3>Do you want to advertise here?</h3>
<p>Your ad will stay here for a month</p>
<div class="img-holder">
<a href="https://www.youtube.com/watch?v=LDE6K5xfKpg" target="_blank"><img src="img/buton2.png" alt="" /></a>
</div>
<p>TIP: Proceeds from advertising are used for server</p>
</div>
<div class="action-right">
<img src="img/vec2.png" alt="" />
</div>
</div>
<div class="sponsors">
<h2>HALL OF FAME</h2>
<h3>THIS MONTH IS SPONSORED BY:</h3>
<div class="sponsor-items">
<div class="sponsor1">
<img src="img/tvgsponsor.png" alt="" />
<p>True Vanilla Gang</p>
</div>
<div class="sponsor2 disabled">
<img src="img/placeholder.png" alt="" />
<p>The Player</p>
</div>
<div class="sponsor3 disabled">
<img src="img/placeholder.png" alt="" />
<p>The Player</p>
</div>
</div>
</div>
<div class="topvoter"></div>
<div class="space"></div>
</main>
<footer>
</footer>
<div id="toast">IP Copied!</div>
<script src="serverapi.js"></script>
<script>
// -----------IP COPYING---------------
function copyIP() {
navigator.clipboard.writeText("truevanilla.org");
let x = document.getElementById("toast");
x.className = "show";
document.getElementById("join-button").src = "img/sari.png"
setTimeout(function(){ x.className = x.className.replace("show", ""); }, 3000);
setTimeout(function(){ document.getElementById("join-button").src = "img/yesil.png"; }, 100);
}
</script>
</body>
</html>