mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-28 11:34:45 +02:00
29 lines
716 B
PHP
29 lines
716 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="application-name" content="{{ config('app.name') }}" />
|
|
<meta name="csrf-token" content="{{ csrf_token() }}" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<title>{{ config('app.name') }}</title>
|
|
|
|
<style>
|
|
[x-cloak] {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
|
|
@filamentStyles
|
|
@vite('resources/css/app.css')
|
|
</head>
|
|
|
|
<body class="antialiased">
|
|
{{ $slot }}
|
|
|
|
@filamentScripts
|
|
@vite('resources/js/app.js')
|
|
</body>
|
|
</html>
|