-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
50 lines (36 loc) · 1.11 KB
/
index.php
File metadata and controls
50 lines (36 loc) · 1.11 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
<?php
require __DIR__.'/data.php';
require __DIR__.'/header.php';
?>
<main>
<div class="site-header">
<h1><?="Let’s take a look at some amazing women and their performance in football."?></h1>
<h2 id="firstpart"><?='Who are the champions?'?></h2>
<p><?="Let's rank them all!"?></p>
</div>
<div class="teams-grid">
<?php foreach ($teams as $name => $info):?>
<div class="team-box">
<div class="uefa">UEFA ranking: <?= $info['uefa-coefficient-ranking'] ?></div>
<img src="<?= $info['logo'] ?>" alt="<?= $name ?> logo" class="team-logo">
<h2><?= $name?></h2>
<h3><?= stripslashes($info['league']) ?></h3>
<h3><?= $info['city'] ?></h3>
<a href="<?= $info['url'] ?>" target="_blank">Official website</a>
<h3>Opponents:</h3>
<ul>
<?php foreach ($info['opponents'] as $opponent): ?>
<li> <?= $opponent ?></li>
<?php endforeach; ?>
</ul>
</div>
<?php endforeach; ?>
</div>
<a href="team.php" class="ending-link">
<div class="ending-box" id="favBox">
<h2><?='So… what’s your favorite team?'?></h2></a>
</div>
</main>
<?php
require __DIR__.'/footer.php';
?>