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.
30 lines
799 B
30 lines
799 B
<div class="row row-cols-md-6 row-cols-3">
|
|
<?php
|
|
foreach ($images as $image) {
|
|
?>
|
|
<div class="col">
|
|
<div class="card mb-3">
|
|
<img
|
|
data-bs-toggle="modal"
|
|
data-bs-target="#imageModal"
|
|
data-bs-image="<?php echo $image["file"]; ?>"
|
|
data-bs-label="<?php echo $image["label"]; ?>"
|
|
src="/static/images/thumbs/thumb_<?php echo $image["file"]; ?>" class="card-img-top" alt="...">
|
|
<div class="card-body">
|
|
<p class="card-text">
|
|
<?php
|
|
if ($image["label"]) {
|
|
echo $image["label"];
|
|
}
|
|
else {
|
|
echo $image["file"];
|
|
}
|
|
?>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
|