2020-10-19 13:50:01 +00:00
|
|
|
<!doctype html>
|
2022-11-30 16:18:55 +00:00
|
|
|
<html lang="{{str_replace('_', '-', app()->getLocale())}}">
|
|
|
|
@include('template.'.config('settings.template').'.content.head')
|
|
|
|
<body>
|
|
|
|
@include('template.'.config('settings.template').'.content.includes.header')
|
|
|
|
@yield('content')
|
|
|
|
@include('template.'.config('settings.template').'.content.includes.cookies')
|
|
|
|
@include('template.'.config('settings.template').'.content.includes.footer')
|
|
|
|
@include('template.'.config('settings.template').'.content.includes.scripts')
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|