2023-03-20 12:04:22 +00:00
|
|
|
<!DOCTYPE html>
|
2023-05-18 13:26:35 +02:00
|
|
|
<html data-theme="coollabs" 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">
|
2023-05-12 15:39:07 +02:00
|
|
|
<link rel="preconnect" href="https://api.fonts.coollabs.io" crossorigin>
|
|
|
|
<link href="https://api.fonts.coollabs.io/css2?family=Inter&display=swap" rel="stylesheet">
|
2023-05-04 08:33:06 +02:00
|
|
|
@env('local')
|
|
|
|
<title>Coolify - localhost</title>
|
2023-05-17 09:08:32 +02:00
|
|
|
<link rel="icon" href="{{ asset('favicon-dev.png') }}" type="image/x-icon" />
|
2023-05-04 08:33:06 +02:00
|
|
|
@endenv
|
|
|
|
@env('production')
|
2023-05-17 09:08:32 +02:00
|
|
|
<link rel="icon" href="{{ asset('favicon.png') }}" type="image/x-icon" />
|
2023-03-20 12:04:22 +00:00
|
|
|
<title>{{ $title ?? 'Coolify' }}</title>
|
2023-05-04 08:33:06 +02:00
|
|
|
@endenv
|
2023-03-20 12:04:22 +00:00
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
@vite(['resources/js/app.js', 'resources/css/app.css'])
|
2023-04-25 10:06:45 +02:00
|
|
|
<style>
|
|
|
|
[x-cloak] {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
</style>
|
2023-03-20 12:04:22 +00:00
|
|
|
@livewireStyles
|
|
|
|
</head>
|
|
|
|
|
2023-05-18 13:26:35 +02:00
|
|
|
<body>
|
2023-05-08 21:56:44 +02:00
|
|
|
@livewireScripts
|
2023-04-27 11:29:02 +02:00
|
|
|
@auth
|
|
|
|
<x-navbar />
|
|
|
|
@endauth
|
2023-06-06 00:18:48 +02:00
|
|
|
<div class="flex justify-center w-full min-h-12" id="vue">
|
|
|
|
{{-- <x-magic-bar /> --}}
|
|
|
|
<magic-bar></magic-bar>
|
2023-05-22 22:30:33 +02:00
|
|
|
</div>
|
2023-05-22 15:47:40 +02:00
|
|
|
<main>
|
2023-03-20 12:04:22 +00:00
|
|
|
{{ $slot }}
|
|
|
|
</main>
|
2023-06-01 12:15:33 +02:00
|
|
|
<x-version class="fixed left-2 bottom-1" />
|
2023-04-28 11:54:01 +02:00
|
|
|
@auth
|
|
|
|
<script>
|
2023-05-12 11:17:56 +02:00
|
|
|
window.addEventListener("keydown", function(event) {
|
|
|
|
if (event.target.nodeName === 'BODY') {
|
|
|
|
if (event.key === '/') {
|
|
|
|
event.preventDefault();
|
|
|
|
window.dispatchEvent(new CustomEvent('slash'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2023-05-04 15:45:53 +02:00
|
|
|
Livewire.on('reloadWindow', () => {
|
|
|
|
window.location.reload();
|
|
|
|
})
|
2023-05-04 22:29:14 +02:00
|
|
|
Livewire.on('error', (message) => {
|
2023-05-08 13:36:49 +02:00
|
|
|
console.log(message);
|
2023-05-10 11:02:59 +02:00
|
|
|
alert(message);
|
2023-05-04 22:29:14 +02:00
|
|
|
})
|
2023-05-09 09:54:43 +02:00
|
|
|
Livewire.on('saved', (message) => {
|
|
|
|
if (message) console.log(message);
|
|
|
|
else console.log('saved');
|
|
|
|
})
|
2023-04-28 11:54:01 +02:00
|
|
|
</script>
|
|
|
|
@endauth
|
2023-03-20 12:04:22 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|