Aufgabe 7

This commit is contained in:
Robert
2023-12-08 17:21:01 +01:00
parent c69ffd7aa2
commit 070945c4a5
72 changed files with 9225 additions and 995 deletions

View File

@@ -0,0 +1,23 @@
<!doctype html>
<html class="no-js" lang="DE">
<head>
<meta charset="utf-8">
<title>E-Mensa Routing Script</title>
<meta name="description" content="unused">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/default.min.css">
@yield("cssextra")
<meta name="theme-color" content="#dadada">
<!-- good developers check the markup ;) -->
</head>
<body>
<div class="container">
<div class="row">
@yield("content")
</div>
</div>
@yield("jsextra")
</body>
</html>

View File

@@ -0,0 +1,23 @@
<!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("body")
<footer>
<table class="fusszeile">
@yield("footer")
</table>
</footer>
</body>
</html>