lasthourcloud/resources/views/components/layout.blade.php

65 lines
2.0 KiB
PHP
Raw Normal View History

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