2022-02-08 07:19:04 +08:00
|
|
|
<!DOCTYPE html>
|
2023-09-18 00:35:00 +08:00
|
|
|
<html lang="{{ isset($locale) ? $locale->htmlLang() : config('app.default_locale') }}"
|
|
|
|
dir="{{ isset($locale) ? $locale->htmlDirection() : 'auto' }}"
|
2022-02-08 18:09:17 +08:00
|
|
|
class="@yield('document-class')">
|
2022-02-08 07:19:04 +08: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 22:12:23 +08:00
|
|
|
<!-- Styles -->
|
2022-02-08 07:19:04 +08:00
|
|
|
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
|
|
|
|
|
|
|
|
<!-- Custom Styles & Head Content -->
|
2023-09-24 17:29:51 +08:00
|
|
|
@include('layouts.parts.custom-styles')
|
|
|
|
@include('layouts.parts.custom-head')
|
2022-02-08 07:19:04 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
@yield('content')
|
|
|
|
</body>
|
|
|
|
</html>
|