-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
27 lines (24 loc) · 791 Bytes
/
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
<!doctype html>
<html lang="fr">
<title>The ArtBox</title>
<?php
include 'header.php';
include_once 'oeuvres.php';
?>
<body>
<main>
<div id="liste-oeuvres">
<?php foreach ($oeuvres as $oeuvre): ?>
<article class="oeuvre">
<a href="oeuvre.php?id=<?= $oeuvre['id'] ?>">
<img src="<?= htmlspecialchars($oeuvre['image']) ?>" alt="<?= htmlspecialchars($oeuvre['alt']) ?>">
<h2><?= htmlspecialchars($oeuvre['titre']) ?></h2>
<p class="description"><?= htmlspecialchars($oeuvre['artiste']) ?></p>
</a>
</article>
<?php endforeach; ?>
</div>
</main>
</body>
</html>
<?php include 'footer.php'; ?>