-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpages.php
More file actions
27 lines (25 loc) · 726 Bytes
/
pages.php
File metadata and controls
27 lines (25 loc) · 726 Bytes
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
<?php
require "head.php";
require "header.php";
?>
<section>
<h2 id="pagesPitres">Chapitre 1</h2>
<div id="containerCards">
<div class="row">
<?php for ( $x = 1 ; $x < 83 ; $x++ ) { ?>
<div class="col-md-3">
<div class="col-md-12">
<section class="cards">
<article class="card" >
<img src="assets/img/ch1/wu_ep1_<?=$x?>.jpg" alt="Page introuvable"/>
</article>
</section>
</div>
</div>
<?php } ?>
</div>
</div>
</section>
<?php
require "footer.php";
?>