-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (85 loc) · 4.6 KB
/
index.html
File metadata and controls
89 lines (85 loc) · 4.6 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="js/lib/bootstrap-4.3.1.min.css"/>
<link rel="stylesheet" href="style.min.css"/>
<link rel="icon" href="data/server-icon.png"/>
<title>Minecraft Stats</title>
</head>
<body>
<nav class="position-absolute navbar navbar-dark navbar-expand-sm ml-2 mt-4 p-1 round-box">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggler" aria-controls="navbarToggler" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarToggler">
<ul class="navbar-nav">
<li class="nav-item px-2">
<a class="nav-link" href="#awards">Prix</a>
</li>
<li class="nav-item px-2">
<a class="nav-link" href="#hof">Panthéon</a>
</li>
<li class="nav-item px-2">
<a class="nav-link" href="#players">Joueurs</a>
</li>
<li>
<form class="form-inline" id="player-form" autocomplete="off">
<input autocomplete="false" id="player-search" type="text" class="form-control bg-dark text-white" placeholder="Chercher joueur..." />
<ul id="autocomplete">
</ul>
<button type="submit" class="form-control btn-dark btn mb-2">
<span>🔍</span>
</button>
</form>
</li>
</ul>
</div>
</nav>
<div id="header" class="clearfix text-center">
<div id="info" class="float-right ml-auto mr-2 mt-4 p-2 round-box small text-right" style="display:none;">
<a href="/">
<img id="server-icon" class="mr-1 img-textsize-3 align-bottom" title="" src="data/server-icon.png"/>
</a>
<span id="server-name" class="d-none d-sm-inline text-shadow">(nom du server)</span>
<div class="small text-muted">
Derinère mise à jour: <span id="update-time" class="text-info">(dernière mise à jour)</span>
</div>
</div>
</div>
<div id="loader" class="container text-center mt-2">
<img class="img-pixelated img-textsize-8" src="img/loader.gif"/>
<h4 class="mt-2 text-shadow">Chargement...</h4>
</div>
<div id="content" style="display:none;">
<div id="view" class="container mx-auto">
<div class="h1 my-4 text-center">
<img id="view-icon" class="img-pixelated img-left img-textsize align-baseline"/>
<span id="view-title" class="text-underline text-shadow">(afficher titre)</h1>
</div>
<h5 id="view-subtitle" class="text-center text-shadow">(afficher sous-titre)</h5>
<div id="view-desc" class="mb-2 text-muted text-center text-shadow">(afficher description)</div>
<div id="view-content">(afficher le contenu)</div>
</div>
<div id="footer" class="container-fluid mt-3 py-2 text-center text-muted small">
<!--
LICENSE NOTE:
The "Attribution" part with respect to the CC BY-SA 4.0
license is that you provide a link to the original repository
like the one below.
If you remove it, please make sure it appears somewhere else!
-->
<a href="https://github.com/pdinklag/MinecraftStats">MinecraftStats</a>
– développé par Patrick Dinklage a.k.a. "pdinklag".<br/>
– mis à jour par Zzzaza<br/>
Les icônes de l'interface et les skins par défaut sont la marque déposée et le copyrights de <a href="http://mojang.com/">Mojang</a>.
</div>
</div>
<script src="js/lib/pako_inflate-1.0.10.min.js"></script>
<script src="js/lib/jquery-3.4.1.min.js"></script>
<script src="js/lib/popper-1.15.0.min.js"></script>
<script src="js/lib/bootstrap-4.3.1.min.js"></script>
<script src="js/mcstats.min.js"></script>
</body>
</html>