]> BookStack Code Mirror - bookstack/blob - resources/views/base.blade.php
Updated the design of the comments section
[bookstack] / resources / views / base.blade.php
1 <!DOCTYPE html>
2 <html class="@yield('body-class')">
3 <head>
4     <title>{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name') }}</title>
5
6     <!-- Meta -->
7     <meta name="viewport" content="width=device-width">
8     <meta name="token" content="{{ csrf_token() }}">
9     <meta name="base-url" content="{{ baseUrl('/') }}">
10     <meta charset="utf-8">
11
12     <!-- Styles and Fonts -->
13     <link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
14     <link rel="stylesheet" media="print" href="{{ versioned_asset('dist/print-styles.css') }}">
15
16     <!-- Scripts -->
17     <script src="{{ baseUrl('/translations') }}"></script>
18
19     @yield('head')
20     @include('partials.custom-styles')
21     @include('partials.custom-head')
22
23 </head>
24 <body class="@yield('body-class')">
25
26     @include('partials.notifications')
27     @include('common.header')
28
29     <section id="content" class="block">
30         @yield('content')
31     </section>
32
33     <div back-to-top class="primary-background">
34         <div class="inner">
35             @icon('chevron-up') <span>{{ trans('common.back_to_top') }}</span>
36         </div>
37     </div>
38
39     @yield('bottom')
40     <script src="{{ versioned_asset('dist/app.js') }}"></script>
41     @yield('scripts')
42
43 </body>
44 </html>