Galarie Updat und schadow updatate
This commit is contained in:
@@ -5,18 +5,31 @@
|
||||
<br>
|
||||
|
||||
<div class="gimages">
|
||||
|
||||
<?php
|
||||
$path = 'src/images/2018Luethje/';
|
||||
foreach (new DirectoryIterator($path) as $file) {
|
||||
if ($file->isDot() || $file->isDir()) continue;;
|
||||
if ($file->getExtension()=="jpeg" || $file->getExtension()=="jpg") {
|
||||
echo '<a href="src/images/2018Luethje/';
|
||||
echo $file;
|
||||
echo '"data-lightbox="mygallery"><img src="src/images/2018Luethje/';
|
||||
echo $file;
|
||||
echo '"></a>';
|
||||
}
|
||||
$dir = 'src/Bilder/Feiertag/2018.12.23 Weihnachten 2018 Lühtjes/';
|
||||
|
||||
// Check if the directory exists
|
||||
if (file_exists($dir) && is_dir($dir)) {
|
||||
|
||||
// Get the files of the directory as an array
|
||||
$scan_arr = scandir($dir);
|
||||
$files_arr = array_diff($scan_arr, array('.', '..'));
|
||||
|
||||
// echo "<pre>"; print_r( $files_arr ); echo "</pre>";
|
||||
|
||||
// Get each files of our directory with line break
|
||||
foreach ($files_arr as $file) {
|
||||
//Get the file path
|
||||
$file_path = $dir.$file;
|
||||
// Get the file extension
|
||||
$file_ext = pathinfo($file_path, PATHINFO_EXTENSION);
|
||||
if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "JPG" || $file_ext == "PNG") {
|
||||
echo '<a href="'.$dir.$file;
|
||||
echo '"data-lightbox="mygallery"><img src="'.$dir.$file;
|
||||
echo '"></a>';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
15
tab/Galerie/2019.php
Normal file
15
tab/Galerie/2019.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<div class="titel">
|
||||
<img src="inc/bg/1609858275128.png"></img>
|
||||
<h3>Weihnachten 2019</h3>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="sGalerie">
|
||||
<span id="leer">
|
||||
<button onclick="window.location.href='?tab=Galerie/2019WeihnachtsMLuebeck';"><img src="src/Bilder/Feiertag/2019.12.17 Weihnachtsmarkt Tobi Melly/20191216_175633.jpg"></img><div>in Lübeck<br></div></button></span>
|
||||
<span id="leer">
|
||||
<button onclick="window.location.href='?tab=Galerie/2019WeihTobi';"><img src="src/Bilder/Feiertag/2019.12.21 Weihnachten mit Tobi 2019/IMG-20191222-WA0022.jpg"></img><div>mit Tobi<br></div></button></span>
|
||||
<span id="leer">
|
||||
<button onclick="window.location.href='?tab=Galerie/2019Luehtjes';"><img src="src/Bilder/Feiertag/2019.12.24 Weihnachten 2019 Lühtjes/20191224_172651.jpg"></img><div>mit Lüthjes</div></button></span>
|
||||
|
||||
</div>
|
||||
@@ -1,22 +1,35 @@
|
||||
<div class="titel">
|
||||
<img src="inc/bg/1609858275128.png"></img>
|
||||
<h3>2019 Lühtje</h3>
|
||||
<h3>mit Lüthje</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>';
|
||||
}
|
||||
$dir = 'src/Bilder/Feiertag/2019.12.24 Weihnachten 2019 Lühtjes/';
|
||||
|
||||
// Check if the directory exists
|
||||
if (file_exists($dir) && is_dir($dir)) {
|
||||
|
||||
// Get the files of the directory as an array
|
||||
$scan_arr = scandir($dir);
|
||||
$files_arr = array_diff($scan_arr, array('.', '..'));
|
||||
|
||||
// echo "<pre>"; print_r( $files_arr ); echo "</pre>";
|
||||
|
||||
// Get each files of our directory with line break
|
||||
foreach ($files_arr as $file) {
|
||||
//Get the file path
|
||||
$file_path = $dir.$file;
|
||||
// Get the file extension
|
||||
$file_ext = pathinfo($file_path, PATHINFO_EXTENSION);
|
||||
if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "JPG" || $file_ext == "PNG") {
|
||||
echo '<a href="'.$dir.$file;
|
||||
echo '"data-lightbox="mygallery"><img src="'.$dir.$file;
|
||||
echo '"></a>';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
@@ -1,22 +1,35 @@
|
||||
<div class="titel">
|
||||
<img src="inc/bg/1609858275128.png"></img>
|
||||
<h3>2019 Tobi</h3>
|
||||
<h3>mit Tobi</h3>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="gimages">
|
||||
|
||||
<?php
|
||||
$path = 'src/images/2019WeihTobi/';
|
||||
foreach (new DirectoryIterator($path) as $file) {
|
||||
if ($file->isDot() || $file->isDir()) continue;;
|
||||
if ($file->getExtension()=="jpeg" || $file->getExtension()=="jpg") {
|
||||
echo '<a href="src/images/2019WeihTobi/';
|
||||
echo $file;
|
||||
echo '"data-lightbox="mygallery"><img src="src/images/2019WeihTobi/';
|
||||
echo $file;
|
||||
echo '"></a>';
|
||||
}
|
||||
$dir = 'src/Bilder/Feiertag/2019.12.21 Weihnachten mit Tobi 2019/';
|
||||
|
||||
// Check if the directory exists
|
||||
if (file_exists($dir) && is_dir($dir)) {
|
||||
|
||||
// Get the files of the directory as an array
|
||||
$scan_arr = scandir($dir);
|
||||
$files_arr = array_diff($scan_arr, array('.', '..'));
|
||||
|
||||
// echo "<pre>"; print_r( $files_arr ); echo "</pre>";
|
||||
|
||||
// Get each files of our directory with line break
|
||||
foreach ($files_arr as $file) {
|
||||
//Get the file path
|
||||
$file_path = $dir.$file;
|
||||
// Get the file extension
|
||||
$file_ext = pathinfo($file_path, PATHINFO_EXTENSION);
|
||||
if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "JPG" || $file_ext == "PNG") {
|
||||
echo '<a href="'.$dir.$file;
|
||||
echo '"data-lightbox="mygallery"><img src="'.$dir.$file;
|
||||
echo '"></a>';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
@@ -1,22 +1,35 @@
|
||||
<div class="titel">
|
||||
<img src="inc/bg/1609858275128.png"></img>
|
||||
<h3>2019 Lübeck</h3>
|
||||
<h3>in 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>';
|
||||
}
|
||||
$dir = 'src/Bilder/Feiertag/2019.12.17 Weihnachtsmarkt Tobi Melly/';
|
||||
|
||||
// Check if the directory exists
|
||||
if (file_exists($dir) && is_dir($dir)) {
|
||||
|
||||
// Get the files of the directory as an array
|
||||
$scan_arr = scandir($dir);
|
||||
$files_arr = array_diff($scan_arr, array('.', '..'));
|
||||
|
||||
// echo "<pre>"; print_r( $files_arr ); echo "</pre>";
|
||||
|
||||
// Get each files of our directory with line break
|
||||
foreach ($files_arr as $file) {
|
||||
//Get the file path
|
||||
$file_path = $dir.$file;
|
||||
// Get the file extension
|
||||
$file_ext = pathinfo($file_path, PATHINFO_EXTENSION);
|
||||
if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "JPG" || $file_ext == "PNG") {
|
||||
echo '<a href="'.$dir.$file;
|
||||
echo '"data-lightbox="mygallery"><img src="'.$dir.$file;
|
||||
echo '"></a>';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
@@ -1,22 +1,35 @@
|
||||
<div class="titel">
|
||||
<img src="inc/bg/1609858275128.png"></img>
|
||||
<h3>2020 Tobi</h3>
|
||||
<h3> mit Tobi</h3>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="gimages">
|
||||
|
||||
<?php
|
||||
$path = 'src/images/2020WeihTobi/';
|
||||
foreach (new DirectoryIterator($path) as $file) {
|
||||
if ($file->isDot() || $file->isDir()) continue;;
|
||||
if ($file->getExtension()=="jpeg" || $file->getExtension()=="jpg") {
|
||||
echo '<a href="src/images/2020WeihTobi/';
|
||||
echo $file;
|
||||
echo '"data-lightbox="mygallery"><img src="src/images/2020WeihTobi/';
|
||||
echo $file;
|
||||
echo '"></a>';
|
||||
}
|
||||
$dir = 'src/Bilder/Feiertag/2020.12.25 Weihnachten mit Tobi/';
|
||||
|
||||
// Check if the directory exists
|
||||
if (file_exists($dir) && is_dir($dir)) {
|
||||
|
||||
// Get the files of the directory as an array
|
||||
$scan_arr = scandir($dir);
|
||||
$files_arr = array_diff($scan_arr, array('.', '..'));
|
||||
|
||||
// echo "<pre>"; print_r( $files_arr ); echo "</pre>";
|
||||
|
||||
// Get each files of our directory with line break
|
||||
foreach ($files_arr as $file) {
|
||||
//Get the file path
|
||||
$file_path = $dir.$file;
|
||||
// Get the file extension
|
||||
$file_ext = pathinfo($file_path, PATHINFO_EXTENSION);
|
||||
if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "JPG" || $file_ext == "PNG") {
|
||||
echo '<a href="'.$dir.$file;
|
||||
echo '"data-lightbox="mygallery"><img src="'.$dir.$file;
|
||||
echo '"></a>';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
@@ -1,22 +1,35 @@
|
||||
<div class="titel">
|
||||
<img src="inc/bg/1609858275128.png"></img>
|
||||
<h3>2021 Anja</h3>
|
||||
<h3>mit Anja</h3>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="gimages">
|
||||
|
||||
<?php
|
||||
$path = 'src/images/2021WeihAnja/';
|
||||
foreach (new DirectoryIterator($path) as $file) {
|
||||
if ($file->isDot() || $file->isDir()) continue;;
|
||||
if ($file->getExtension()=="jpeg" || $file->getExtension()=="jpg") {
|
||||
echo '<a href="src/images/2021WeihAnja/';
|
||||
echo $file;
|
||||
echo '"data-lightbox="mygallery"><img src="src/images/2021WeihAnja/';
|
||||
echo $file;
|
||||
echo '"></a>';
|
||||
}
|
||||
$dir = 'src/Bilder/Feiertag/2021.12.24 Weihnachten mit Anja/';
|
||||
|
||||
// Check if the directory exists
|
||||
if (file_exists($dir) && is_dir($dir)) {
|
||||
|
||||
// Get the files of the directory as an array
|
||||
$scan_arr = scandir($dir);
|
||||
$files_arr = array_diff($scan_arr, array('.', '..'));
|
||||
|
||||
// echo "<pre>"; print_r( $files_arr ); echo "</pre>";
|
||||
|
||||
// Get each files of our directory with line break
|
||||
foreach ($files_arr as $file) {
|
||||
//Get the file path
|
||||
$file_path = $dir.$file;
|
||||
// Get the file extension
|
||||
$file_ext = pathinfo($file_path, PATHINFO_EXTENSION);
|
||||
if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "JPG" || $file_ext == "PNG") {
|
||||
echo '<a href="'.$dir.$file;
|
||||
echo '"data-lightbox="mygallery"><img src="'.$dir.$file;
|
||||
echo '"></a>';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
@@ -1,22 +1,35 @@
|
||||
<div class="titel">
|
||||
<img src="inc/bg/1609858275128.png"></img>
|
||||
<h3>2021 Anja</h3>
|
||||
<h3>JasMel</h3>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="gimages">
|
||||
|
||||
<?php
|
||||
$path = 'src/images/2021WeihAnja/';
|
||||
foreach (new DirectoryIterator($path) as $file) {
|
||||
if ($file->isDot() || $file->isDir()) continue;;
|
||||
if ($file->getExtension()=="jpeg" || $file->getExtension()=="jpg") {
|
||||
echo '<a href="src/images/2021WeihAnja/';
|
||||
echo $file;
|
||||
echo '"data-lightbox="mygallery"><img src="src/images/2021WeihAnja/';
|
||||
echo $file;
|
||||
echo '"></a>';
|
||||
}
|
||||
$dir = 'src/Bilder/Feiertag/2022.12.24 Weihnachten 22/';
|
||||
|
||||
// Check if the directory exists
|
||||
if (file_exists($dir) && is_dir($dir)) {
|
||||
|
||||
// Get the files of the directory as an array
|
||||
$scan_arr = scandir($dir);
|
||||
$files_arr = array_diff($scan_arr, array('.', '..'));
|
||||
|
||||
// echo "<pre>"; print_r( $files_arr ); echo "</pre>";
|
||||
|
||||
// Get each files of our directory with line break
|
||||
foreach ($files_arr as $file) {
|
||||
//Get the file path
|
||||
$file_path = $dir.$file;
|
||||
// Get the file extension
|
||||
$file_ext = pathinfo($file_path, PATHINFO_EXTENSION);
|
||||
if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "JPG" || $file_ext == "PNG") {
|
||||
echo '<a href="'.$dir.$file;
|
||||
echo '"data-lightbox="mygallery"><img src="'.$dir.$file;
|
||||
echo '"></a>';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
36
tab/Galerie/2023-1.php
Normal file
36
tab/Galerie/2023-1.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<div class="titel">
|
||||
<img src="inc/bg/1609858275128.png"></img>
|
||||
<h3>mit Anja & Co</h3>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="gimages">
|
||||
<?php
|
||||
$dir = 'src/Bilder/Feiertag/2023.12.24 Weihnachten mit Anja und co/';
|
||||
|
||||
// Check if the directory exists
|
||||
if (file_exists($dir) && is_dir($dir)) {
|
||||
|
||||
// Get the files of the directory as an array
|
||||
$scan_arr = scandir($dir);
|
||||
$files_arr = array_diff($scan_arr, array('.', '..'));
|
||||
|
||||
// echo "<pre>"; print_r( $files_arr ); echo "</pre>";
|
||||
|
||||
// Get each files of our directory with line break
|
||||
foreach ($files_arr as $file) {
|
||||
//Get the file path
|
||||
$file_path = $dir.$file;
|
||||
// Get the file extension
|
||||
$file_ext = pathinfo($file_path, PATHINFO_EXTENSION);
|
||||
if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "JPG" || $file_ext == "PNG") {
|
||||
echo '<a href="'.$dir.$file;
|
||||
echo '"data-lightbox="mygallery"><img src="'.$dir.$file;
|
||||
echo '"></a>';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
</div>
|
||||
36
tab/Galerie/2023-2.php
Normal file
36
tab/Galerie/2023-2.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<div class="titel">
|
||||
<img src="inc/bg/1609858275128.png"></img>
|
||||
<h3>mit Illgs</h3>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="gimages">
|
||||
<?php
|
||||
$dir = 'src/Bilder/Feiertag/2023.12.25 Weihnachten mit Illgs/';
|
||||
|
||||
// Check if the directory exists
|
||||
if (file_exists($dir) && is_dir($dir)) {
|
||||
|
||||
// Get the files of the directory as an array
|
||||
$scan_arr = scandir($dir);
|
||||
$files_arr = array_diff($scan_arr, array('.', '..'));
|
||||
|
||||
// echo "<pre>"; print_r( $files_arr ); echo "</pre>";
|
||||
|
||||
// Get each files of our directory with line break
|
||||
foreach ($files_arr as $file) {
|
||||
//Get the file path
|
||||
$file_path = $dir.$file;
|
||||
// Get the file extension
|
||||
$file_ext = pathinfo($file_path, PATHINFO_EXTENSION);
|
||||
if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "JPG" || $file_ext == "PNG") {
|
||||
echo '<a href="'.$dir.$file;
|
||||
echo '"data-lightbox="mygallery"><img src="'.$dir.$file;
|
||||
echo '"></a>';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
</div>
|
||||
36
tab/Galerie/2023-3.php
Normal file
36
tab/Galerie/2023-3.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<div class="titel">
|
||||
<img src="inc/bg/1609858275128.png"></img>
|
||||
<h3>mit Lüthjes</h3>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="gimages">
|
||||
<?php
|
||||
$dir = 'src/Bilder/Feiertag/2023.12.28 Weihnachten Lüthje/';
|
||||
|
||||
// Check if the directory exists
|
||||
if (file_exists($dir) && is_dir($dir)) {
|
||||
|
||||
// Get the files of the directory as an array
|
||||
$scan_arr = scandir($dir);
|
||||
$files_arr = array_diff($scan_arr, array('.', '..'));
|
||||
|
||||
// echo "<pre>"; print_r( $files_arr ); echo "</pre>";
|
||||
|
||||
// Get each files of our directory with line break
|
||||
foreach ($files_arr as $file) {
|
||||
//Get the file path
|
||||
$file_path = $dir.$file;
|
||||
// Get the file extension
|
||||
$file_ext = pathinfo($file_path, PATHINFO_EXTENSION);
|
||||
if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "JPG" || $file_ext == "PNG") {
|
||||
echo '<a href="'.$dir.$file;
|
||||
echo '"data-lightbox="mygallery"><img src="'.$dir.$file;
|
||||
echo '"></a>';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
</div>
|
||||
15
tab/Galerie/2023.php
Normal file
15
tab/Galerie/2023.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<div class="titel">
|
||||
<img src="inc/bg/1609858275128.png"></img>
|
||||
<h3>Weihnachten 2023</h3>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="sGalerie">
|
||||
<span id="leer">
|
||||
<button onclick="window.location.href='?tab=Galerie/2023-1';"><img src="src/Bilder/Feiertag/2023.12.24 Weihnachten mit Anja und co/20231224_233659.jpg"></img><div>Mit Anja & Co<br></div></button></span>
|
||||
<span id="leer">
|
||||
<button onclick="window.location.href='?tab=Galerie/2023-2';"><img src="src/Bilder/Feiertag/2023.12.25 Weihnachten mit Illgs/20231225_145245.jpg"></img><div>mit Illgs<br></div></button></span>
|
||||
<span id="leer">
|
||||
<button onclick="window.location.href='?tab=Galerie/2023-3';"><img src="src/Bilder/Feiertag/2023.12.28 Weihnachten Lüthje/20231228_150323.jpg"></img><div>mit Lüthjes</div></button></span>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user