25 lines
567 B
PHP
25 lines
567 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ $channel->locale }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
@include('theme::partials.seo-head')
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@stack('head')
|
|
</head>
|
|
<body class="bg-white text-gray-900 antialiased">
|
|
<header>
|
|
@include('theme::partials.nav')
|
|
</header>
|
|
|
|
<main>
|
|
@yield('content')
|
|
</main>
|
|
|
|
<footer>
|
|
@include('theme::partials.footer')
|
|
</footer>
|
|
|
|
@stack('scripts')
|
|
</body>
|
|
</html>
|