Webseite ohne Anmeldung läuft auf laravel

This commit is contained in:
Robert
2024-01-17 12:43:56 +01:00
parent 57a4470de3
commit bab5bfd58e
435 changed files with 37238 additions and 91 deletions

View File

@@ -0,0 +1,30 @@
<!doctype html>
<html class="no-js" lang="DE">
<head>
<meta charset="utf-8">
<title>{{ $title }}</title>
@yield("header")
<!-- good developers check the markup ;) -->
</head>
<body>
@yield("nav")
<hr>
<div class="grid">
<div></div>
<div>
@yield("text")
@yield("gerichte")
</div>
<div></div>
</div>
<footer>
<table class="fusszeile">
@yield("footer")
</table>
</footer>
</body>
</html>