mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
15 lines
363 B
PHP
15 lines
363 B
PHP
|
<!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>
|