2015-08-05 15:59:39 -04:00
|
|
|
<!DOCTYPE html>
|
2017-08-26 08:24:55 -04:00
|
|
|
<html class="shaded">
|
2015-08-05 15:59:39 -04:00
|
|
|
<head>
|
2016-08-14 07:29:35 -04:00
|
|
|
<title>{{ setting('app-name') }}</title>
|
2015-11-30 17:23:48 -05:00
|
|
|
|
|
|
|
<!-- Meta -->
|
2015-08-05 15:59:39 -04:00
|
|
|
<meta name="viewport" content="width=device-width">
|
2016-01-15 18:21:47 -05:00
|
|
|
<meta name="token" content="{{ csrf_token() }}">
|
2016-08-14 07:29:35 -04:00
|
|
|
<meta name="base-url" content="{{ baseUrl('/') }}">
|
2015-11-30 17:23:48 -05:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<!-- Styles and Fonts -->
|
2018-03-17 09:03:13 -04:00
|
|
|
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
|
|
|
|
<link rel="stylesheet" media="print" href="{{ versioned_asset('dist/print-styles.css') }}">
|
2015-09-04 12:16:58 -04:00
|
|
|
|
|
|
|
<!-- Scripts -->
|
2016-03-06 05:52:10 -05:00
|
|
|
@include('partials/custom-styles')
|
2016-10-30 07:44:31 -04:00
|
|
|
|
|
|
|
<!-- Custom user content -->
|
|
|
|
@if(setting('app-custom-head'))
|
|
|
|
{!! setting('app-custom-head') !!}
|
|
|
|
@endif
|
2015-08-05 15:59:39 -04:00
|
|
|
</head>
|
2017-08-26 08:24:55 -04:00
|
|
|
<body class="@yield('body-class')">
|
2015-08-05 15:59:39 -04:00
|
|
|
|
2016-12-04 09:08:04 -05:00
|
|
|
@include('partials.notifications')
|
2015-08-05 15:59:39 -04:00
|
|
|
|
2015-09-05 12:42:05 -04:00
|
|
|
<header id="header">
|
2017-08-26 08:24:55 -04:00
|
|
|
<div class="container fluid">
|
2015-09-05 12:42:05 -04:00
|
|
|
<div class="row">
|
2017-02-04 06:01:49 -05:00
|
|
|
<div class="col-sm-6">
|
2015-10-01 16:08:36 -04:00
|
|
|
|
2016-08-14 07:29:35 -04:00
|
|
|
<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
|
2016-09-22 13:53:22 -04:00
|
|
|
@if (setting('app-name-header'))
|
|
|
|
<span class="logo-text">{{ setting('app-name') }}</span>
|
|
|
|
@endif
|
2015-10-01 16:08:36 -04:00
|
|
|
</a>
|
2015-09-05 12:42:05 -04:00
|
|
|
</div>
|
2017-02-04 06:01:49 -05:00
|
|
|
<div class="col-sm-6">
|
2015-09-05 12:42:05 -04:00
|
|
|
<div class="float right">
|
|
|
|
<div class="links text-center">
|
|
|
|
@yield('header-buttons')
|
|
|
|
</div>
|
2015-09-29 16:25:03 -04:00
|
|
|
@if(isset($signedIn) && $signedIn)
|
2016-12-04 09:08:04 -05:00
|
|
|
@include('partials._header-dropdown', ['currentUser' => $currentUser])
|
2015-09-05 15:25:57 -04:00
|
|
|
@endif
|
2015-09-05 12:42:05 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
2015-08-05 15:59:39 -04:00
|
|
|
<section class="container">
|
|
|
|
@yield('content')
|
|
|
|
</section>
|
|
|
|
|
2018-03-17 09:03:13 -04:00
|
|
|
<script src="{{ versioned_asset('dist/app.js') }}"></script>
|
2015-08-05 15:59:39 -04:00
|
|
|
</body>
|
|
|
|
</html>
|