Webseite ohne Anmeldung läuft auf laravel
This commit is contained in:
23
M6/emensa/views/layouts/layout.blade.php
Normal file
23
M6/emensa/views/layouts/layout.blade.php
Normal 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>
|
||||
21
M6/emensa/views/layouts/m4_7d_layout.blade.php
Normal file
21
M6/emensa/views/layouts/m4_7d_layout.blade.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<!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>
|
||||
30
M6/emensa/views/layouts/main_layout.blade.php
Normal file
30
M6/emensa/views/layouts/main_layout.blade.php
Normal 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>
|
||||
Reference in New Issue
Block a user