22 lines
		
	
	
		
			797 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			797 B
		
	
	
	
		
			PHP
		
	
	
<!doctype html>
 | 
						|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
 | 
						|
<head>
 | 
						|
    @include('template.'.config('settings.template').'.content.includes.meta')
 | 
						|
    @include('template.'.config('settings.template').'.content.includes.css')
 | 
						|
    @include('template.'.config('settings.template').'.content.includes.integrations')
 | 
						|
    @yield('head')
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
    <nav class="bg-ci-animated">
 | 
						|
        <div class="container">
 | 
						|
           <a href="{{url('/')}}" class="fs-4 fw-bold text-decoration-none">Lumino Themes</a>
 | 
						|
        </div>
 | 
						|
    </nav>
 | 
						|
    @yield('content')
 | 
						|
    @include('template.'.config('settings.template').'.content.includes.footer')
 | 
						|
    @include('template.'.config('settings.template').'.content.includes.scripts')
 | 
						|
    @yield('scripts')
 | 
						|
    @yield('end_scripts')
 | 
						|
</body>
 | 
						|
</html> |