2015-07-12 21:01:42 +02:00
|
|
|
<!DOCTYPE html>
|
2016-03-13 15:00:24 +01:00
|
|
|
<html class="@yield('body-class')">
|
2015-07-12 21:01:42 +02:00
|
|
|
<head>
|
2016-08-14 13:29:35 +02:00
|
|
|
<title>{{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name') }}</title>
|
2015-08-29 17:00:19 +02:00
|
|
|
|
2015-11-30 23:23:48 +01:00
|
|
|
<!-- 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() }}">
|
2016-08-14 13:29:35 +02:00
|
|
|
<meta name="base-url" content="{{ baseUrl('/') }}">
|
2015-10-18 20:40:33 +02:00
|
|
|
<meta charset="utf-8">
|
2015-08-29 17:00:19 +02:00
|
|
|
|
|
|
|
<!-- Styles and Fonts -->
|
2018-03-17 14:03:13 +01:00
|
|
|
<link rel="stylesheet" href="{{ versioned_asset('dist/styles.css') }}">
|
|
|
|
<link rel="stylesheet" media="print" href="{{ versioned_asset('dist/print-styles.css') }}">
|
2015-08-29 17:00:19 +02:00
|
|
|
|
|
|
|
<!-- Scripts -->
|
2017-03-05 15:10:55 +01:00
|
|
|
<script src="{{ baseUrl('/translations') }}"></script>
|
2015-08-29 17:00:19 +02:00
|
|
|
|
2015-07-12 22:31:15 +02:00
|
|
|
@yield('head')
|
2018-10-16 19:49:16 +02:00
|
|
|
@include('partials.custom-styles')
|
2018-09-22 12:53:40 +02:00
|
|
|
@include('partials.custom-head')
|
2015-08-29 17:00:19 +02:00
|
|
|
|
2018-10-16 19:49:16 +02:00
|
|
|
</head>
|
|
|
|
<body class="@yield('body-class')">
|
2015-08-31 12:43:28 +02:00
|
|
|
|
2018-10-16 19:49:16 +02:00
|
|
|
@include('partials.notifications')
|
|
|
|
@include('common.header')
|
2015-07-21 23:11:30 +02:00
|
|
|
|
2015-09-03 17:51:10 +02:00
|
|
|
<section id="content" class="block">
|
2015-07-12 21:01:42 +02:00
|
|
|
@yield('content')
|
|
|
|
</section>
|
|
|
|
|
2017-08-06 22:08:03 +02:00
|
|
|
<div back-to-top>
|
2016-02-08 21:42:41 +01:00
|
|
|
<div class="inner">
|
2018-02-17 20:49:00 +01:00
|
|
|
@icon('chevron-up') <span>{{ trans('common.back_to_top') }}</span>
|
2016-02-08 21:42:41 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-16 19:49:16 +02:00
|
|
|
|
|
|
|
@yield('bottom')
|
|
|
|
<script src="{{ versioned_asset('dist/app.js') }}"></script>
|
|
|
|
@yield('scripts')
|
|
|
|
|
2015-07-12 21:01:42 +02:00
|
|
|
</body>
|
|
|
|
</html>
|