mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-01 00:22:37 +01:00
4f788384f0
Fixes issues within IE
63 lines
1.9 KiB
PHP
63 lines
1.9 KiB
PHP
<!DOCTYPE html>
|
|
<html class="shaded">
|
|
<head>
|
|
<title>{{ setting('app-name') }}</title>
|
|
|
|
<!-- Meta -->
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta name="token" content="{{ csrf_token() }}">
|
|
<meta name="base-url" content="{{ baseUrl('/') }}">
|
|
<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') }}">
|
|
|
|
<!-- Scripts -->
|
|
@include('partials/custom-styles')
|
|
|
|
<!-- Custom user content -->
|
|
@if(setting('app-custom-head'))
|
|
{!! setting('app-custom-head') !!}
|
|
@endif
|
|
</head>
|
|
<body class="@yield('body-class')">
|
|
|
|
@include('partials.notifications')
|
|
|
|
<header id="header">
|
|
<div class="container fluid">
|
|
<div class="row">
|
|
<div class="col-sm-6">
|
|
|
|
<a href="{{ baseUrl('/') }}" class="logo">
|
|
@if(setting('app-logo', '') !== 'none')
|
|
<img class="logo-image" src="{{ setting('app-logo', '') === '' ? baseUrl('/logo.png') : baseUrl(setting('app-logo', '')) }}" alt="Logo">
|
|
@endif
|
|
@if (setting('app-name-header'))
|
|
<span class="logo-text">{{ setting('app-name') }}</span>
|
|
@endif
|
|
</a>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="float right">
|
|
<div class="links text-center">
|
|
@yield('header-buttons')
|
|
</div>
|
|
@if(isset($signedIn) && $signedIn)
|
|
@include('partials._header-dropdown', ['currentUser' => $currentUser])
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="container">
|
|
@yield('content')
|
|
</section>
|
|
|
|
<script src="{{ versioned_asset('dist/app.js') }}"></script>
|
|
</body>
|
|
</html>
|