2022-02-07 18:19:04 -05:00
|
|
|
<!DOCTYPE html>
|
2023-09-17 12:35:00 -04:00
|
|
|
<html lang="{{ isset($locale) ? $locale->htmlLang() : config('app.default_locale') }}"
|
|
|
|
dir="{{ isset($locale) ? $locale->htmlDirection() : 'auto' }}"
|
2022-02-08 05:09:17 -05:00
|
|
|
class="@yield('document-class')">
|
2022-02-07 18:19:04 -05:00
|
|
|
<head>
|
|
|
|
<title>{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name') }}</title>
|
|
|
|
|
|
|
|
<!-- Meta -->
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
2023-10-03 10:12:23 -04:00
|
|
|
<!-- Styles -->
|
2022-02-07 18:19:04 -05:00
|
|
|
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
|
|
|
|
|
|
|
|
<!-- Custom Styles & Head Content -->
|
2023-09-24 05:29:51 -04:00
|
|
|
@include('layouts.parts.custom-styles')
|
|
|
|
@include('layouts.parts.custom-head')
|
2022-02-07 18:19:04 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
@yield('content')
|
|
|
|
</body>
|
|
|
|
</html>
|