my-website/resources/views/layout.blade.php

15 lines
386 B
PHP
Raw Permalink Normal View History

2024-02-15 20:31:36 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
@vite('resources/css/app.css')
<title>@yield('title')</title>
</head>
<body>
@include('partials.navbar')
@yield('content')
2024-02-16 23:36:28 +02:00
@include('partials.footer')
2024-02-15 20:31:36 +02:00
</body>
</html>