forked from Drumm-/Narna-ClanStats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
85 lines (81 loc) · 3.65 KB
/
index.php
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
<?php
error_reporting(E_ERROR);
require_once 'config.inc.php';
require_once 'includes/functions.inc.php';
?>
<!DOCTYPE html>
<head>
<title><?php echo $sitename; ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<!-- Le CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="assets/css/style.css" rel="stylesheet" type="text/css">
<!-- Le JavaScript -->
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/detail.js"></script>
</head>
<body>
<div id="wrap">
<div class="container">
<div class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><?php echo empty($sitelogo) ? $sitename : '<img src="' . $sitelogo . '" alt="' . $sitename . '">'; ?></a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li <?php echo ($_GET["show"] == "home") ? 'class="active"' : NULL; ?>><a href="index.php?show=home">Home</a></li>
<li <?php echo ($_GET["show"] == "clans") ? 'class="active"' : NULL; ?>><a href="index.php?show=clans">Clans</a></li>
<li <?php echo ($_GET["show"] == "players") ? 'class="active"' : NULL; ?>><a href="index.php?show=players">Players</a></li>
<li <?php echo ($_GET["show"] == "info") ? 'class="active"' : NULL; ?>><a href="index.php?show=info">Info</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
<?php
switch ($_GET['show']) {
case "info":
include("includes/info.php");
break;
case "players":
include("includes/players.php");
break;
case "clans":
include("includes/clans.php");
break;
case "home":
include("includes/home.php");
break;
default:
include("includes/home.php");
break;
}
?>
</div>
</div>
<div id="footer">
<div class="container">
<!-- You are not allowed to remove this credits -->
<p class="text-muted credit"><a href='http://dev.bukkit.org/server-mods/simpleclansstats' target='_blank'>SimpleClansStats2</a> by <a href="http://www.postiglione.at/" target="_blank">Luca Postiglione</a>.</p>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="Detail" tabindex="-1" role="dialog" aria-labelledby="DetailLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
</div>
</div>
</div>
</div>
</body>
</html>