-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteam.html
54 lines (46 loc) · 1.63 KB
/
team.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Code Club TBMS</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
<link rel="stylesheet" href="/assets/css/bootstrap-grid.min.css">
<link type="text/css" rel="stylesheet" href="/assets/css/materialize.min.css" media="screen,projection" />
<link rel="stylesheet" href="/assets/css/font-awesome.css">
<link rel="stylesheet" href="/assets/css/main.css">
</head>
<body style="min-height:100vh;">
<div class="wrapper">
<div id="header">
</div>
<div id="content" class="container">
<h2>Meet our whole team</h2>
<table class="bordered highlight" id="team_table">
<tr>
<th>Name</th>
<th>Joined</th>
<th>Positons</th>
<th>Find them</th>
</tr>
</table>
</div>
<div id="footer">
</div>
</div>
<script src="/assets/js/jquery-3.2.1.min.js" charset="utf-8"></script>
<script src="/assets/js/popper.min.js" charset="utf-8"></script>
<script src="/assets/js/bootstrap.js" charset="utf-8"></script>
<script src="/assets/js/materialize.min.js" charset="utf-8"></script>
<script src="/assets/js/main.js" charset="utf-8"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#header").load("/header.html", function(){
$(".button-collapse").sideNav();
});
$("#footer").load("/footer.html");
$("#team_table").loadallteam();
});
</script>
</body>
</html>