-
Notifications
You must be signed in to change notification settings - Fork 0
/
sortable-table.html
executable file
·50 lines (40 loc) · 1.04 KB
/
sortable-table.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
---
layout: default
title: BUNT
---
<section role="main">
<header class="bunt-brand">
<h1 class="mvl small-12 medium-10">BUNT</h1>
</header>
<div class="small-12 columns">
<div class="row">
<div class="medium-9 large-7 small-centered column">
<p class="mbm">Here is a look at past 10 years worth of team bunt data</p>
</div>
</div>
<div class="row">
<div class="small-12 columns">
<table id="datatable" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Year</th>
<th>MLB rank in year</th>
<th>Team</th>
<th>League</th>
<th>Sac Hits</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Year</th>
<th>MLB rank in year</th>
<th>Team</th>
<th>League</th>
<th>Sac Hits</th>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</section>