-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
42 lines (41 loc) · 1.18 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
<?php
require __DIR__ . "/header.php";
require __DIR__ ."/functions/cities.php";
require __DIR__ . "/functions/total-teams.php";
?>
<main>
<div class="content-column">
<table>
<thead>
<tr>
<td>Team Name</td>
<td>League</td>
<td>Last Time Champions</td>
<td>City</td>
<td>Nickname</td>
<td>Website</td>
</tr>
</thead>
<tbody>
<?php
require __DIR__ . "/functions/teams-table.php";
?>
</tbody>
</table>
<div class="cities-column">
<h2>Cities</h2>
<div class="cities">
<?php foreach($uniqueCities as $city) : ?>
<div class="city"><?= $city?></div>
<?php endforeach; ?>
</div>
</div>
<div class="teams-column">
<h2>Number of Teams</h2>
<div class="teams">
<?= $totalNumberOfTeams?>
</div>
</div>
</div>
</main>
<?php require __DIR__ . "/footer.php"; ?>