22 lines
808 B
PHP
22 lines
808 B
PHP
|
<!doctype html>
|
||
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||
|
<head>
|
||
|
@include('template.'.config('settings.template').'.content.includes.meta')
|
||
|
@include('template.'.config('settings.template').'.content.includes.css')
|
||
|
@include('template.'.config('settings.template').'.content.includes.integrations')
|
||
|
@yield('head')
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<nav style="background-color: #2d840e">
|
||
|
<div class="container">
|
||
|
<a href="{{url('/')}}" class="fs-4 fw-bold text-decoration-none">Areya Energy</a>
|
||
|
</div>
|
||
|
</nav>
|
||
|
@yield('content')
|
||
|
@include('template.'.config('settings.template').'.content.includes.footer')
|
||
|
@include('template.'.config('settings.template').'.content.includes.scripts')
|
||
|
@yield('scripts')
|
||
|
@yield('end_scripts')
|
||
|
</body>
|
||
|
</html>
|