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

24 lines
543 B
PHP
Raw Normal View History

2023-03-20 13:04:22 +01:00
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
2023-03-20 13:04:22 +01: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-19 12:42:15 +02:00
<style>[x-cloak] { display: none !important; }</style>
2023-03-20 13:04:22 +01:00
@livewireStyles
</head>
<body>
<x-navbar />
<main>
2023-03-20 13:04:22 +01:00
{{ $slot }}
</main>
@livewireScripts
</body>
</html>