-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (48 loc) · 2.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.0">
<meta name="description" content="FunnyGuilds is a fully customisable RPG plugin that allows you to create guilds">
<title>FunnyGuilds</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.16.0/TweenMax.min.js"></script>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/index.css">
<script src="assets/js/background.js"></script>
</head>
<body id="body">
<!-- Background -->
<canvas id="background"></canvas>
<!-- Header -->
<header id="header">
<div id="logo">
<a href="./">FunnyGuilds</a>
</div>
<nav id="menu">
<ul>
<li><a href="./">STRONA GŁÓWNA</a></li>
<li><a href="https://discord.gg/CYvyq3u">DISCORD</a></li>
<li><a href="https://github.com/dzikoysk/FunnyGuilds/releases">DOWNLOAD</a></li>
</ul>
</nav>
</header>
<main id="main">
<!-- Content -->
<div id="content" onclick="location.href='.';" style="cursor:pointer;">
<h4>Aktualizacja</h4>
<h1>FunnyGuilds <span id="version"></span></h1>
<script>
$.get("https://raw.githubusercontent.com/FunnyGuilds/FunnyGuilds/master/updater.txt").success((data) => {
document.getElementById("version").innerHTML = data
})
</script>
</div>
</main>
<!-- Footer -->
<footer id="footer">FunnyGuilds.net © 2014-<span id="year">2023</span>. All Rights Reserved.</footer>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear()
</script>
</body>
</html>