17 lines
525 B
PHP
17 lines
525 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<title>@yield('meta_title', '')</title>
|
|
<meta name="keywords" content="@yield('meta_keywords', '')" />
|
|
<meta name="description" content="@yield('meta_description', '')" />
|
|
|
|
@vite('resources/home/scss/app.scss')
|
|
</head>
|
|
<body>
|
|
{{ $slot }}
|
|
</body>
|
|
</html>
|