You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
482 B
21 lines
482 B
<?php
|
|
|
|
require "data/images.php";
|
|
|
|
?>
|
|
<div class="row row-cols-md-6 row-cols-3">
|
|
<?php
|
|
foreach ($images as $image) {
|
|
?>
|
|
<div class="col">
|
|
<div class="card mb-3">
|
|
<img src="/static/images/thumbs/thumb_<?php echo $image; ?>" class="card-img-top" alt="...">
|
|
<div class="card-body">
|
|
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
|