mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 07:39:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			688 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			688 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">
 | 
						|
    <meta name="csrf-token" content="{{ csrf_token() }}">
 | 
						|
 | 
						|
    <title>@yield('title') - My idlers</title>
 | 
						|
 | 
						|
    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">
 | 
						|
 | 
						|
    <link rel="stylesheet" href="{{ asset('css/app.css') }}">
 | 
						|
    <link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}">
 | 
						|
 | 
						|
    <x-form-style></x-form-style>
 | 
						|
 | 
						|
    <script src="{{ asset('js/bootstrap.min.js') }}" defer></script>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
{{ $slot }}
 | 
						|
</body>
 | 
						|
</html>
 |