Fix resource links
This commit is contained in:
parent
02c15e9622
commit
349599288b
|
@ -6,14 +6,25 @@
|
||||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||||
|
|
||||||
<title>@yield('title') - @if (config()->has('app.name')) {{ config('app.name') }} @else My idlers @endif</title>
|
<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')}}"/>
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}">
|
@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')
|
||||||
|
|
||||||
<x-form-style></x-form-style>
|
<x-form-style></x-form-style>
|
||||||
|
|
||||||
<script src="{{ asset('js/bootstrap.min.js') }}" defer></script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{ $slot }}
|
{{ $slot }}
|
||||||
|
<script src="{{ asset('js/app.js') }}" defer></script>
|
||||||
|
@yield('scripts')
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user