5c231d2039
Also adds a basic front page with larvel blade :^)
24 lines
440 B
PHP
24 lines
440 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>@yield('title', 'Sklep')</title>
|
|
<link rel="stylesheet" href="{{ mix("css/app.css") }}">
|
|
@stack('head')
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<i class="fa fa-hamburger"></i>
|
|
</nav>
|
|
<main>
|
|
@yield('main')
|
|
</main>
|
|
|
|
<footer>
|
|
<h4>Copyright 2021 JA</h4>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|