Standardised export views with base layout, Reduced included export styles

Related to #2666
This commit is contained in:
Dan Brown
2021-05-04 23:15:05 +01:00
parent 43b6633183
commit 95798a2eba
6 changed files with 73 additions and 117 deletions

View File

@ -0,0 +1,15 @@
<!doctype html>
<html lang="{{ config('app.lang') }}">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>@yield('title')</title>
@include('partials.export-styles', ['format' => $format])
@include('partials.export-custom-head')
</head>
<body>
<div class="page-content">
@yield('content')
</div>
</body>
</html>