mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-02 22:03:48 +08:00
1ba5a1274c
- Most elements done, but still need to do editors, tables and final pass. - Toggled only by quick js check at the moment, checking via css media query. Need to make into user-preference toggle. For #1234
54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ config('app.lang') }}" dir="{{ config('app.rtl') ? 'rtl' : 'ltr' }}" class="@yield('body-class')">
|
|
<head>
|
|
<title>{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name') }}</title>
|
|
|
|
<!-- Meta -->
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta name="token" content="{{ csrf_token() }}">
|
|
<meta name="base-url" content="{{ url('/') }}">
|
|
<meta charset="utf-8">
|
|
|
|
<!-- Styles and Fonts -->
|
|
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
|
|
<link rel="stylesheet" media="print" href="{{ versioned_asset('dist/print-styles.css') }}">
|
|
|
|
@yield('head')
|
|
|
|
<!-- Custom Styles & Head Content -->
|
|
@include('partials.custom-styles')
|
|
@include('partials.custom-head')
|
|
|
|
@stack('head')
|
|
|
|
<!-- Translations for JS -->
|
|
@stack('translations')
|
|
|
|
<script>
|
|
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
document.documentElement.classList.add('dark-mode');
|
|
}
|
|
</script>
|
|
</head>
|
|
<body class="@yield('body-class')">
|
|
|
|
@include('partials.notifications')
|
|
@include('common.header')
|
|
|
|
<div id="content" class="block">
|
|
@yield('content')
|
|
</div>
|
|
|
|
<div back-to-top class="primary-background print-hidden">
|
|
<div class="inner">
|
|
@icon('chevron-up') <span>{{ trans('common.back_to_top') }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
@yield('bottom')
|
|
<script src="{{ versioned_asset('dist/app.js') }}"></script>
|
|
@yield('scripts')
|
|
|
|
</body>
|
|
</html>
|