mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
27 lines
863 B
PHP
27 lines
863 B
PHP
<!doctype html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="wa-dark">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
|
|
<script type="module" src="https://early.webawesome.com/webawesome@3.0.0-alpha.13/dist/webawesome.loader.js" data-fa-kit-code="ba9cf75857"></script>
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@livewireStyles
|
|
<title>{{ $title ?? 'Untitled' }} ~ {{ config('app.name') }}</title>
|
|
</head>
|
|
<body>
|
|
<wa-page mobile-breakpoint="920">
|
|
<header slot="header">
|
|
@livewire('app.navbar')
|
|
</header>
|
|
|
|
<main>
|
|
{{ $slot }}
|
|
</main>
|
|
</wa-page>
|
|
|
|
@stack('modals')
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|