close #24, Kalender hinzugefügt

This commit is contained in:
2023-08-17 16:25:20 +02:00
parent 79af4e9907
commit 2ae47f86f0
19 changed files with 223 additions and 32 deletions

View File

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