24 lines
360 B
PHP
24 lines
360 B
PHP
<!DOCTYPE html>
|
|
<html lang="en" data-bs-theme="light" data-pwa="true">
|
|
|
|
<head>
|
|
@include('layouts.partials/title-meta')
|
|
|
|
@vite(['resources/js/theme-switcher.js'])
|
|
|
|
@include('layouts.partials/head-css')
|
|
|
|
@yield('css')
|
|
</head>
|
|
|
|
<body>
|
|
@yield('content')
|
|
|
|
@include('layouts.partials/back-to-top')
|
|
|
|
@vite(['resources/js/theme.js'])
|
|
|
|
</body>
|
|
|
|
</html>
|