2023-03-20 12:04:22 +00:00
|
|
|
<!DOCTYPE html>
|
2023-03-24 13:54:17 +00:00
|
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
2023-03-20 12:04:22 +00:00
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{{ $title ?? 'Coolify' }}</title>
|
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
@vite(['resources/js/app.js', 'resources/css/app.css'])
|
2023-04-25 08:06:45 +00:00
|
|
|
<style>
|
|
|
|
[x-cloak] {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
</style>
|
2023-03-20 12:04:22 +00:00
|
|
|
@livewireStyles
|
|
|
|
</head>
|
|
|
|
|
2023-04-26 08:02:19 +00:00
|
|
|
<body x-data="confirmModal" x-on:keydown.escape="toggleConfirmModal">
|
2023-03-24 13:54:17 +00:00
|
|
|
<x-navbar />
|
|
|
|
<main>
|
2023-03-20 12:04:22 +00:00
|
|
|
{{ $slot }}
|
|
|
|
</main>
|
|
|
|
|
2023-04-26 08:02:19 +00:00
|
|
|
<x-confirm-modal />
|
2023-03-20 12:04:22 +00:00
|
|
|
@livewireScripts
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|