2015-07-13 03:01:42 +08:00
|
|
|
<!DOCTYPE html>
|
2016-03-13 22:00:24 +08:00
|
|
|
<html class="@yield('body-class')">
|
2015-07-13 03:01:42 +08:00
|
|
|
<head>
|
2016-08-14 19:29:35 +08:00
|
|
|
<title>{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name') }}</title>
|
2015-08-29 23:00:19 +08:00
|
|
|
|
2015-12-01 06:23:48 +08:00
|
|
|
<!-- Meta -->
|
2015-07-13 03:01:42 +08:00
|
|
|
<meta name="viewport" content="width=device-width">
|
2015-08-13 06:42:42 +08:00
|
|
|
<meta name="token" content="{{ csrf_token() }}">
|
2016-08-14 19:29:35 +08:00
|
|
|
<meta name="base-url" content="{{ baseUrl('/') }}">
|
2015-10-19 02:40:33 +08:00
|
|
|
<meta charset="utf-8">
|
2015-08-29 23:00:19 +08:00
|
|
|
|
|
|
|
<!-- Styles and Fonts -->
|
2015-12-17 01:09:44 +08:00
|
|
|
<link rel="stylesheet" href="{{ versioned_asset('css/styles.css') }}">
|
|
|
|
<link rel="stylesheet" media="print" href="{{ versioned_asset('css/print-styles.css') }}">
|
2016-08-14 00:56:20 +08:00
|
|
|
<link rel="stylesheet" href="{{ baseUrl('/libs/material-design-iconic-font/css/material-design-iconic-font.min.css') }}">
|
2015-08-29 23:00:19 +08:00
|
|
|
|
|
|
|
<!-- Scripts -->
|
2016-08-14 00:56:20 +08:00
|
|
|
<script src="{{ baseUrl('/libs/jquery/jquery.min.js?version=2.1.4') }}"></script>
|
|
|
|
<script src="{{ baseUrl('/libs/jquery/jquery-ui.min.js?version=1.11.4') }}"></script>
|
2017-03-05 22:10:55 +08:00
|
|
|
<script src="{{ baseUrl('/translations') }}"></script>
|
2015-08-29 23:00:19 +08:00
|
|
|
|
2015-07-13 04:31:15 +08:00
|
|
|
@yield('head')
|
2016-03-06 18:52:10 +08:00
|
|
|
|
|
|
|
@include('partials/custom-styles')
|
2016-05-22 18:01:21 +08:00
|
|
|
|
2017-02-25 20:41:32 +08:00
|
|
|
@if(setting('app-custom-head') && \Route::currentRouteName() !== 'settings')
|
|
|
|
<!-- Custom user content -->
|
2016-05-22 18:01:21 +08:00
|
|
|
{!! setting('app-custom-head') !!}
|
2017-02-25 20:41:32 +08:00
|
|
|
<!-- End custom user content -->
|
2016-05-22 18:01:21 +08:00
|
|
|
@endif
|
2015-07-13 03:01:42 +08:00
|
|
|
</head>
|
2015-12-30 00:39:25 +08:00
|
|
|
<body class="@yield('body-class')" ng-app="bookStack">
|
2015-07-13 03:01:42 +08:00
|
|
|
|
2015-12-01 06:23:48 +08:00
|
|
|
@include('partials/notifications')
|
2015-08-29 23:00:19 +08:00
|
|
|
|
2015-08-31 00:53:30 +08:00
|
|
|
<header id="header">
|
2017-08-20 01:32:24 +08:00
|
|
|
<div class="container fluid">
|
2015-08-31 00:53:30 +08:00
|
|
|
<div class="row">
|
2017-08-19 22:33:22 +08:00
|
|
|
<div class="col-sm-4" ng-non-bindable>
|
2016-08-14 00:56:20 +08:00
|
|
|
<a href="{{ baseUrl('/') }}" class="logo">
|
2016-03-06 20:55:08 +08:00
|
|
|
@if(setting('app-logo', '') !== 'none')
|
2016-08-14 00:56:20 +08:00
|
|
|
<img class="logo-image" src="{{ setting('app-logo', '') === '' ? baseUrl('/logo.png') : baseUrl(setting('app-logo', '')) }}" alt="Logo">
|
2015-10-08 06:17:48 +08:00
|
|
|
@endif
|
2016-09-23 01:53:22 +08:00
|
|
|
@if (setting('app-name-header'))
|
|
|
|
<span class="logo-text">{{ setting('app-name') }}</span>
|
|
|
|
@endif
|
2015-10-02 04:08:36 +08:00
|
|
|
</a>
|
2015-08-31 00:53:30 +08:00
|
|
|
</div>
|
2017-08-19 22:33:22 +08:00
|
|
|
<div class="col-sm-8">
|
2015-08-31 18:43:28 +08:00
|
|
|
<div class="float right">
|
2017-08-19 22:33:22 +08:00
|
|
|
<div class="header-search">
|
|
|
|
<form action="{{ baseUrl('/search') }}" method="GET" class="search-box">
|
2018-02-17 21:30:52 +08:00
|
|
|
<button id="header-search-box-button" type="submit">@icon('search') </button>
|
2017-08-19 22:33:22 +08:00
|
|
|
<input id="header-search-box-input" type="text" name="term" tabindex="2" placeholder="{{ trans('common.search') }}" value="{{ isset($searchTerm) ? $searchTerm : '' }}">
|
|
|
|
</form>
|
|
|
|
</div>
|
2015-08-31 18:43:28 +08:00
|
|
|
<div class="links text-center">
|
2018-02-17 21:30:52 +08:00
|
|
|
<a href="{{ baseUrl('/books') }}">@icon('book'){{ trans('entities.books') }}</a>
|
2017-02-06 05:19:29 +08:00
|
|
|
@if(signedInUser() && userCan('settings-manage'))
|
2016-12-04 22:08:04 +08:00
|
|
|
<a href="{{ baseUrl('/settings') }}"><i class="zmdi zmdi-settings"></i>{{ trans('settings.settings') }}</a>
|
2015-08-31 18:43:28 +08:00
|
|
|
@endif
|
2017-02-06 05:19:29 +08:00
|
|
|
@if(!signedInUser())
|
2018-02-17 21:30:52 +08:00
|
|
|
<a href="{{ baseUrl('/login') }}">@icon('login') {{ trans('auth.log_in') }}</a>
|
2015-09-05 03:40:36 +08:00
|
|
|
@endif
|
2015-08-31 18:43:28 +08:00
|
|
|
</div>
|
2017-02-06 05:19:29 +08:00
|
|
|
@if(signedInUser())
|
|
|
|
@include('partials._header-dropdown', ['currentUser' => user()])
|
2015-08-31 19:29:48 +08:00
|
|
|
@endif
|
2015-08-31 18:43:28 +08:00
|
|
|
|
2015-08-23 20:41:35 +08:00
|
|
|
</div>
|
2015-07-17 02:53:24 +08:00
|
|
|
</div>
|
2015-07-16 05:55:49 +08:00
|
|
|
</div>
|
2015-07-13 03:01:42 +08:00
|
|
|
</div>
|
2015-08-31 00:53:30 +08:00
|
|
|
</header>
|
2015-07-22 05:11:30 +08:00
|
|
|
|
2015-09-03 23:51:10 +08:00
|
|
|
<section id="content" class="block">
|
2015-07-13 03:01:42 +08:00
|
|
|
@yield('content')
|
|
|
|
</section>
|
|
|
|
|
2017-08-07 04:08:03 +08:00
|
|
|
<div back-to-top>
|
2016-02-09 04:42:41 +08:00
|
|
|
<div class="inner">
|
2016-12-04 22:08:04 +08:00
|
|
|
<i class="zmdi zmdi-chevron-up"></i> <span>{{ trans('common.back_to_top') }}</span>
|
2016-02-09 04:42:41 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-17 02:15:22 +08:00
|
|
|
@yield('bottom')
|
2015-12-17 01:09:44 +08:00
|
|
|
<script src="{{ versioned_asset('js/common.js') }}"></script>
|
2015-12-31 04:48:57 +08:00
|
|
|
@yield('scripts')
|
2015-07-13 03:01:42 +08:00
|
|
|
</body>
|
|
|
|
</html>
|