2020-10-19 13:50:01 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
2020-09-30 09:01:51 +00:00
|
|
|
|
2021-05-10 20:32:51 +00:00
|
|
|
<head>
|
|
|
|
@include('template.'.config('settings.template').'.content.head')
|
2020-09-30 09:01:51 +00:00
|
|
|
</head>
|
|
|
|
|
2021-05-10 20:32:51 +00:00
|
|
|
<body>
|
2020-09-30 09:01:51 +00:00
|
|
|
|
|
|
|
@yield('content')
|
|
|
|
|
2021-05-10 20:32:51 +00:00
|
|
|
@include('template.'.config('settings.template').'.includes.footer')
|
|
|
|
@include('template.'.config('settings.template').'.includes.scripts')
|
2020-09-30 09:01:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-05-10 20:32:51 +00:00
|
|
|
</body>
|