73 lines
2.2 KiB
Plaintext
73 lines
2.2 KiB
Plaintext
<?php $_shouldextend[1]=1; ?>
|
|
|
|
<?php $this->startSection("header"); ?>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<?php $this->stopSection(); ?>
|
|
|
|
<?php $this->startSection("nav"); ?>
|
|
<div class="grid">
|
|
<div>
|
|
<img src="/img/fh-logo.jpg" alt="FH-Logo">
|
|
</div>
|
|
<div>
|
|
<a href="#ankündigung">Ankündigung</a>
|
|
<a href="#speisen">Speisen</a>
|
|
<a href="#zahlen">Zahlen</a>
|
|
<a href="#kontakt">Kontakt</a>
|
|
<a href="#wichtig">Wichtig für uns</a>
|
|
|
|
</div>
|
|
<div>
|
|
|
|
<?php if(($_SESSION['login'] ?? NULL) == 0): ?>
|
|
<a href="/anmeldung">Anmelden</a>
|
|
<?php else: ?>
|
|
Angemeldet als:<br>
|
|
<div><?php echo \htmlentities($_SESSION['name']??'', ENT_QUOTES, 'UTF-8', false); ?></div>
|
|
<a href="/abmeldung">Abmelden</a>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php $this->stopSection(); ?>
|
|
|
|
<?php $this->startSection("text"); ?>
|
|
|
|
<img src="/img/mensa21.jpg" alt="Essen">
|
|
<h1 id="ankündigung">Bald gibt es auch Essen online ;)</h1>
|
|
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et
|
|
dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
|
|
clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,
|
|
consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
|
|
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no
|
|
sea takimata sanctus est Lorem ipsum dolor sit amet.</p>
|
|
<h1 id="speisen">Köstlichkeiten die Sie erwarten</h1>
|
|
|
|
<?php $this->stopSection(); ?>
|
|
|
|
<?php $this->startSection("gerichte"); ?>
|
|
|
|
<?php if(isset($data['error'])): ?>
|
|
<h1>Es gab ein Problem mit der Datenbankverbindung</h1>
|
|
<p>Fehlermeldung</p>
|
|
<pre> <?php echo \htmlentities($data['beschreibung']??'', ENT_QUOTES, 'UTF-8', false); ?></pre>
|
|
|
|
<?php else: ?>
|
|
<?php
|
|
echo $data["gericht"];
|
|
echo $data["allergene"];
|
|
?>
|
|
<?php endif; ?>
|
|
|
|
<?php $this->stopSection(); ?>
|
|
|
|
<?php $this->startSection("footer"); ?>
|
|
|
|
<tr>
|
|
<td>(c) E-Mensa GmbH</td>
|
|
<td>Şafak Hazinedar & Robert Joel</td>
|
|
<td><a href="">Impressum</a></td>
|
|
</tr>
|
|
|
|
<?php $this->stopSection(); ?>
|
|
<?php if (isset($_shouldextend[1])) { echo $this->runChild("layouts.main_layout", ['title' => "E-Mensa"]); } ?> |