1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-11-24 11:52:34 +01:00
BookStack/resources/views/base.blade.php

87 lines
3.5 KiB
PHP
Raw Normal View History

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