Galerie und tage

This commit is contained in:
2021-11-23 17:56:26 +01:00
parent ff35366279
commit 5f873bee89
4693 changed files with 149659 additions and 301447 deletions

23
tab/G2019Luehtjes.php Normal file
View File

@@ -0,0 +1,23 @@
<div class="titel">
<img src="inc/bg/1609858275128.png"></img>
<h3>2019 Lühtje</h3>
</div>
<br>
<div class="gimages">
<?php
$path = 'src/images/2019Luehtjes/';
foreach (new DirectoryIterator($path) as $file) {
if ($file->isDot() || $file->isDir()) continue;;
if ($file->getExtension()=="jpeg" || $file->getExtension()=="jpg") {
echo '<a href="src/images/2019Luehtjes/';
echo $file;
echo '"data-lightbox="mygallery"><img src="src/images/2019Luehtjes/';
echo $file;
echo '"></a>';
}
}
?>
</div>