mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-08 09:26:42 +00:00
bd7c7eb8d6
Seemed a bit redundant and complicated, since we're only adding a few extra styles. Just merged into main styles instead.
23 lines
694 B
PHP
23 lines
694 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ isset($locale) ? $locale->htmlLang() : config('app.default_locale') }}"
|
|
dir="{{ isset($locale) ? $locale->htmlDirection() : 'auto' }}"
|
|
class="@yield('document-class')">
|
|
<head>
|
|
<title>{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name') }}</title>
|
|
|
|
<!-- Meta -->
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta charset="utf-8">
|
|
|
|
<!-- Styles -->
|
|
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
|
|
|
|
<!-- Custom Styles & Head Content -->
|
|
@include('layouts.parts.custom-styles')
|
|
@include('layouts.parts.custom-head')
|
|
</head>
|
|
<body>
|
|
@yield('content')
|
|
</body>
|
|
</html>
|