2016-01-31 12:53:30 -05:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
|
|
<title>{{ $page->name }}</title>
|
|
|
|
|
|
|
|
<style>
|
2017-02-26 16:39:15 -05:00
|
|
|
@if (!app()->environment('testing'))
|
2018-03-17 13:12:01 -04:00
|
|
|
{!! file_get_contents(public_path('/dist/export-styles.css')) !!}
|
2017-02-26 16:39:15 -05:00
|
|
|
@endif
|
2016-01-31 12:53:30 -05:00
|
|
|
</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">
|
|
|
|
|
2016-12-03 13:35:40 -05:00
|
|
|
@include('pages.page-display')
|
2016-01-31 12:53:30 -05:00
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
2018-04-30 10:12:10 -04:00
|
|
|
<div class="text-muted text-small">
|
|
|
|
@include('partials.entity-meta', ['entity' => $page])
|
|
|
|
</div>
|
2016-01-31 12:53:30 -05:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|