30 lines
436 B
PHP
30 lines
436 B
PHP
<!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> |