-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
93 lines (90 loc) · 3.07 KB
/
index.php
File metadata and controls
93 lines (90 loc) · 3.07 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
90
91
92
93
<?php
include("cacheable.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>LFK Manifest</title>
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link href="jquery-ui-1.8.23.custom/css/ui-lightness/jquery-ui-1.8.23.custom.css" rel="stylesheet">
<style type="text/css">
.waiting-circles{ padding: 0; display: inline-block;
position: relative; width: 60px; height: 60px;}
.waiting-circles-element{ margin: 0 2px 0 0; background-color: #e4e4e4;
border: solid 1px #f4f4f4;
width: 10px; height: 10px; display: inline-block;
-moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;}
.waiting-circles-play-0{ background-color: #9ec45f; }
.waiting-circles-play-1{ background-color: #aed46f; }
.waiting-circles-play-2{ background-color: #bee47f; }
hr {
margin: 0;
}
.slidesjs-next {
float: right;
}
.slidesjs-next, .slidesjs-previous {
color: #cccccc;
}
</style>
<script src="jquery-ui-1.8.23.custom/js/jquery-1.8.0.min.js"></script>
<script src="jquery-ui-1.8.23.custom/js/jquery-ui-1.8.23.custom.min.js"></script>
<script src="https://www.google.com/jsapi"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="slidesjs/jquery.slides.min.js"></script>
<script src="jquery-waiting.js"></script>
<script src="manifest.js"></script>
</head>
<body>
<div class="navbar navbar-inverse navbar-static-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#" id="time">--:--</a>
<div class="nav-collapse collapse">
<ul class="nav">
<?php if($_GET['page'] == "overview") { ?>
<li class="active">
<?php } else { ?>
<li class="inactive">
<?php } ?>
<a href="overview">Översikt</a></li>
</li>
<?php if($_GET['page'] == "wish") { ?>
<li class="active">
<?php } else { ?>
<li class="inactive">
<?php } ?>
<a href="wish">Liftkö</a></li>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<?php
switch($_GET['page']) {
case "wish":
include("front-wish.php");
break;
case "overview":
include("front-overview.php");
break;
default:
include("front-overview.php");
break;
}
?>
<hr>
<footer>
<p>© Linköpings Fallskärmsklubb <?php echo date("Y"); ?></p>
</footer>
</div> <!-- /container -->
</body>
</html>