-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·132 lines (128 loc) · 3.42 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php include('inc/header.php'); ?>
<section class="recentGames">
<div class="row-content">
<div>
<div class="overlay">
<h2>Grizzlies head coach Tom Morrison prepares team to battle against the Pioneers</h2>
</div>
</div>
<div class="vs">
<h3>// Next Game: <span><a href="#">Grizzlies vs Pioneers</a> </span> <i class="icon-chevron-sign-right"></i></h3>
<img src="assets/images/home/grizzlies.png" alt="Grizzlies Logo" />
<img src="assets/images/home/pioneers.png" alt="Pioneers Logo" />
</div>
</div>
</section>
<section class="teamInformation">
<div class="row-content">
<div class="news">
<h2>News</h2>
<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
<th>Information</th>
</tr>
</thead>
<tbody>
<tr>
<td>10/15/2013</td>
<td>Grizzlies forward Greg Barker out for season with undisclosed injury</td>
</tr>
<tr>
<td>10/12/2013</td>
<td>Grizzlies trade Jim Hunts to the Ottawa Swaggerbacks and pick up forward Greg Barker</td>
</tr>
<tr>
<td>09/05/2013</td>
<td>YouTube channel updated with tonight's game</td>
</tr>
<tr>
<td>09/05/2013</td>
<td>Grizzlies defenseman Yehuda Miller named league MVP for week</td>
</tr>
<tr>
<td>08/12/2013</td>
<td>Grizzlies resign forward Mike Schroeder to a 5 year deal</td>
</tr>
</tbody>
</table>
<div class="merchandise">
<img src="assets/images/home/seasontickets.png" alt="Season Tickets" />
<img src="assets/images/home/grizzlieshop.png" alt="Grizzlies Shop" />
</div>
</div>
<div class="standings">
<h2>League Standings</h2>
<table class="table">
<thead>
<tr>
<th>Rank</th>
<th>Team</th>
<th>W</th>
<th>L</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Pittsburgh Grizzlies</td>
<td>(50)</td>
<td>84</td>
</tr>
<tr>
<td>2</td>
<td>Aalborg Pirates</td>
<td>(47)</td>
<td>82</td>
</tr>
<tr>
<td>3</td>
<td>Miami Ducks</td>
<td>(50)</td>
<td>84</td>
</tr>
<tr>
<td>4</td>
<td>Philadelphia Lions</td>
<td>(43)</td>
<td>75</td>
</tr>
<tr>
<td>5</td>
<td>Brooklyn Spartans</td>
<td>(40)</td>
<td>74</td>
</tr>
<tr>
<td>6</td>
<td>New Jersey Foxes</td>
<td>(39)</td>
<td>73</td>
</tr>
<tr>
<td>7</td>
<td>Wheeling Vipers</td>
<td>(38)</td>
<td>72</td>
</tr>
<tr>
<td>8</td>
<td>Columbus Bulldogs</td>
<td>(37)</td>
<td>71</td>
</tr>
<tr>
<td>9</td>
<td>Cleveland Wasps</td>
<td>(37)</td>
<td>71</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<?php include('inc/footer.php'); ?>
</body>
</html>