29 lines
		
	
	
		
			664 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			664 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
 | |
| 
 | |
| <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'])
 | |
|     <style>
 | |
|         [x-cloak] {
 | |
|             display: none !important;
 | |
|         }
 | |
|     </style>
 | |
|     @livewireStyles
 | |
| </head>
 | |
| 
 | |
| <body x-data="confirmModal" x-on:keydown.escape="toggleConfirmModal">
 | |
|     <x-navbar />
 | |
|     <main>
 | |
|         {{ $slot }}
 | |
|     </main>
 | |
| 
 | |
|     <x-confirm-modal />
 | |
|     @livewireScripts
 | |
| </body>
 | |
| 
 | |
| </html>
 | 
