mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-31 22:39:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			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() }}">
 | |
|     @if(isset(Auth::user()->api_token))
 | |
|         <meta name="api_token" content="{{ Auth::user()->api_token }}">
 | |
|     @endif
 | |
| 
 | |
|     <title>@yield('title') - @if (config()->has('app.name')){{ config('app.name') }} @else My idlers @endif</title>
 | |
|     <link rel="icon" type="image" href="{{asset(Session::get('favicon') ?? 'favicon.ico')}}"/>
 | |
| 
 | |
|     @if(Session::get('dark_mode'))
 | |
|         <link rel="stylesheet" href="{{ asset('css/dark.css') }}">
 | |
|     @else
 | |
|         <link rel="stylesheet" href="{{ asset('css/light.css') }}">
 | |
|     @endif
 | |
| 
 | |
|     <link rel="stylesheet" href="{{ asset('css/app.css') }}">
 | |
| 
 | |
|     @yield('css_links')
 | |
|     @yield('style')
 | |
| </head>
 | |
| <body class="font-sans antialiased">
 | |
| <div class="container-fluid">
 | |
|     @include('layouts.navigation')
 | |
| </div>
 | |
| <div class="container">
 | |
|     <h3 class="ms-2 mt-3">
 | |
|         @yield('header')
 | |
|     </h3>
 | |
| </div>
 | |
| <div class="container">
 | |
|     @yield('content')
 | |
| </div>
 | |
| <script src="{{ asset('js/app.js') }}" defer></script>
 | |
| @yield('scripts')
 | |
| </body>
 | |
| </html>
 |