mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
30 lines
588 B
PHP
30 lines
588 B
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title>{{ $page->name }}</title>
|
|
|
|
<style>
|
|
{!! $css !!}
|
|
</style>
|
|
@yield('head')
|
|
</head>
|
|
<body>
|
|
<div class="container" id="page-show">
|
|
<div class="row">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
<div class="page-content">
|
|
|
|
@include('pages.page-display')
|
|
|
|
<hr>
|
|
|
|
@include('partials.entity-meta', ['entity' => $page])
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|