2015-07-12 21:01:42 +02:00
|
|
|
<!DOCTYPE html>
|
2023-09-17 18:35:00 +02:00
|
|
|
<html lang="{{ isset($locale) ? $locale->htmlLang() : config('app.default_locale') }}"
|
|
|
|
dir="{{ isset($locale) ? $locale->htmlDirection() : 'auto' }}"
|
2022-07-23 19:29:04 +02:00
|
|
|
class="{{ setting()->getForCurrentUser('dark-mode-enabled') ? 'dark-mode ' : '' }}">
|
2015-07-12 21:01:42 +02:00
|
|
|
<head>
|
2016-08-14 13:29:35 +02:00
|
|
|
<title>{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name') }}</title>
|
2015-08-29 17:00:19 +02:00
|
|
|
|
2015-11-30 23:23:48 +01:00
|
|
|
<!-- Meta -->
|
2023-01-25 17:11:34 +01:00
|
|
|
<meta charset="utf-8">
|
2015-07-12 21:01:42 +02:00
|
|
|
<meta name="viewport" content="width=device-width">
|
2015-08-13 00:42:42 +02:00
|
|
|
<meta name="token" content="{{ csrf_token() }}">
|
2019-08-04 15:26:39 +02:00
|
|
|
<meta name="base-url" content="{{ url('/') }}">
|
2023-09-22 11:31:24 +02:00
|
|
|
<meta name="theme-color" content="{{(setting()->getForCurrentUser('dark-mode-enabled') ? setting('app-color-dark') : setting('app-color'))}}"/>
|
2015-08-29 17:00:19 +02:00
|
|
|
|
2020-12-22 06:20:13 +01:00
|
|
|
<!-- Social Cards Meta -->
|
|
|
|
<meta property="og:title" content="{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name') }}">
|
|
|
|
<meta property="og:url" content="{{ url()->current() }}">
|
|
|
|
@stack('social-meta')
|
|
|
|
|
2023-10-03 16:12:23 +02:00
|
|
|
<!-- Styles -->
|
2018-03-17 14:03:13 +01:00
|
|
|
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
|
2015-08-29 17:00:19 +02:00
|
|
|
|
2023-01-25 12:03:19 +01:00
|
|
|
<!-- Icons -->
|
2023-01-25 17:11:34 +01:00
|
|
|
<link rel="icon" type="image/png" sizes="256x256" href="{{ setting('app-icon') ?: url('/icon.png') }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="180x180" href="{{ setting('app-icon-180') ?: url('/icon-180.png') }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ setting('app-icon-180') ?: url('/icon-180.png') }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="128x128" href="{{ setting('app-icon-128') ?: url('/icon-128.png') }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="64x64" href="{{ setting('app-icon-64') ?: url('/icon-64.png') }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ setting('app-icon-32') ?: url('/icon-32.png') }}">
|
2023-01-25 12:03:19 +01:00
|
|
|
|
2023-08-10 15:44:27 +02:00
|
|
|
<!-- PWA -->
|
2023-10-02 16:54:39 +02:00
|
|
|
<link rel="manifest" href="{{ url('/manifest.json') }}" crossorigin="use-credentials">
|
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
2023-08-10 15:44:27 +02:00
|
|
|
|
2015-07-12 22:31:15 +02:00
|
|
|
@yield('head')
|
2019-07-06 15:52:25 +02:00
|
|
|
|
|
|
|
<!-- Custom Styles & Head Content -->
|
2023-09-24 11:29:51 +02:00
|
|
|
@include('layouts.parts.custom-styles')
|
|
|
|
@include('layouts.parts.custom-head')
|
2015-08-29 17:00:19 +02:00
|
|
|
|
2019-04-14 14:01:51 +02:00
|
|
|
@stack('head')
|
2019-07-06 15:52:25 +02:00
|
|
|
|
|
|
|
<!-- Translations for JS -->
|
|
|
|
@stack('translations')
|
2018-10-16 19:49:16 +02:00
|
|
|
</head>
|
2022-11-08 22:17:45 +01:00
|
|
|
<body
|
|
|
|
@if(setting()->getForCurrentUser('ui-shortcuts-enabled', false))
|
|
|
|
component="shortcuts"
|
|
|
|
option:shortcuts:key-map="{{ \BookStack\Settings\UserShortcutMap::fromUserPreferences()->toJson() }}"
|
|
|
|
@endif
|
|
|
|
class="@stack('body-class')">
|
2015-08-31 12:43:28 +02:00
|
|
|
|
2022-06-22 13:47:31 +02:00
|
|
|
@include('layouts.parts.base-body-start')
|
2023-09-24 11:29:51 +02:00
|
|
|
@include('layouts.parts.skip-to-content')
|
|
|
|
@include('layouts.parts.notifications')
|
|
|
|
@include('layouts.parts.header')
|
2015-07-21 23:11:30 +02:00
|
|
|
|
2021-04-19 22:41:13 +02:00
|
|
|
<div id="content" components="@yield('content-components')" class="block">
|
2015-07-12 21:01:42 +02:00
|
|
|
@yield('content')
|
2019-08-25 16:44:51 +02:00
|
|
|
</div>
|
2015-07-12 21:01:42 +02:00
|
|
|
|
2023-09-24 11:29:51 +02:00
|
|
|
@include('layouts.parts.footer')
|
2020-03-19 04:28:06 +01:00
|
|
|
|
2022-11-15 00:19:02 +01:00
|
|
|
<div component="back-to-top" class="back-to-top print-hidden">
|
2016-02-08 21:42:41 +01:00
|
|
|
<div class="inner">
|
2018-02-17 20:49:00 +01:00
|
|
|
@icon('chevron-up') <span>{{ trans('common.back_to_top') }}</span>
|
2016-02-08 21:42:41 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-16 19:49:16 +02:00
|
|
|
|
|
|
|
@yield('bottom')
|
2023-09-12 13:34:02 +02:00
|
|
|
@if($cspNonce ?? false)
|
|
|
|
<script src="{{ versioned_asset('dist/app.js') }}" nonce="{{ $cspNonce }}"></script>
|
|
|
|
@endif
|
2018-10-16 19:49:16 +02:00
|
|
|
@yield('scripts')
|
|
|
|
|
2022-06-22 13:47:31 +02:00
|
|
|
@include('layouts.parts.base-body-end')
|
2015-07-12 21:01:42 +02:00
|
|
|
</body>
|
|
|
|
</html>
|