removed gallery, added notizen button

This commit is contained in:
Felix Ivo
2025-06-16 10:01:41 +02:00
parent 3862b68d9f
commit da82f93e99
5 changed files with 7 additions and 81 deletions

View File

@@ -1,17 +0,0 @@
<?php include dirname(__DIR__).'/header.phtml'; ?>
<h2>Galerie</h2>
<div class="container">
<?php
foreach($photos as $p) {
echo '<div class="item-4-12">';
echo '<h3>' . $p["title"] . '</h3>'
. '<img src="images/' . $p["filename"] . '" />';
echo '</div>';
}
?>
</div>
<?php include dirname(__DIR__).'/footer.phtml'; ?>

View File

@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Gallery View Vorlage</title>
<title>Notizen App</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width">
<link href="CSS/style.css" rel="stylesheet" type="text/css" />
@@ -12,15 +12,13 @@
<div class="button">
<a href="?controller=User&do=showUserLoginForm">Anmelden</a>
</div>
<h1>Fotofreun<span>.de</span> OWL<span>e.V.</span></h1>
<h1>Notes<span>.de</span></h1>
</div>
</header>
<nav>
<ul>
<li><a href="?controller=Welcome&do=showWelcome">Willkommen</a></li>
<li><a href="#">Mitglieder</a></li>
<li><a href="?controller=Gallery&do=showPhotos">Galerie</a></li>
<li><a href="#">G&auml;stebuch</a></li>
<li><a href="?controller=Notes&do=showNotes">Notizen</a></li>
</ul>
</nav>
<div class="wrapper">