BookStack/resources/views/public.blade.php

63 lines
1.9 KiB
PHP
Raw Normal View History

2015-08-05 19:59:39 +00:00
<!DOCTYPE html>
<html class="shaded">
2015-08-05 19:59:39 +00:00
<head>
<title>{{ setting('app-name') }}</title>
<!-- Meta -->
2015-08-05 19:59:39 +00:00
<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') }}">
2015-09-04 16:16:58 +00:00
<!-- Scripts -->
@include('partials/custom-styles')
<!-- Custom user content -->
@if(setting('app-custom-head'))
{!! setting('app-custom-head') !!}
@endif
2015-08-05 19:59:39 +00:00
</head>
<body class="@yield('body-class')">
2015-08-05 19:59:39 +00:00
2016-12-04 14:08:04 +00:00
@include('partials.notifications')
2015-08-05 19:59:39 +00:00
2015-09-05 16:42:05 +00:00
<header id="header">
<div class="container fluid">
2015-09-05 16:42:05 +00:00
<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>
2015-09-05 16:42:05 +00:00
</div>
<div class="col-sm-6">
2015-09-05 16:42:05 +00:00
<div class="float right">
<div class="links text-center">
@yield('header-buttons')
</div>
2015-09-29 20:25:03 +00:00
@if(isset($signedIn) && $signedIn)
2016-12-04 14:08:04 +00:00
@include('partials._header-dropdown', ['currentUser' => $currentUser])
@endif
2015-09-05 16:42:05 +00:00
</div>
</div>
</div>
</div>
</header>
2015-08-05 19:59:39 +00:00
<section class="container">
@yield('content')
</section>
<script src="{{ versioned_asset('dist/app.js') }}"></script>
2015-08-05 19:59:39 +00:00
</body>
</html>