20 lines
432 B
PHP
20 lines
432 B
PHP
<!doctype html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
@include('template.'.config('settings.template').'.content.head')
|
|
</head>
|
|
|
|
<body>
|
|
@include('template.'.config('settings.template').'.content.includes.header')
|
|
|
|
|
|
|
|
@yield('content')
|
|
|
|
@include('template.'.config('settings.template').'.content.includes.footer')
|
|
@include('template.'.config('settings.template').'.content.includes.scripts')
|
|
|
|
|
|
|
|
</body> |