21 lines
343 B
PHP
21 lines
343 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("body")
|
|
|
|
<footer>
|
|
<table class="fusszeile">
|
|
@yield("footer")
|
|
</table>
|
|
</footer>
|
|
</body>
|
|
</html> |