23 lines
536 B
PHP
23 lines
536 B
PHP
<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>
|