-<!doctype html>
-<html lang="en">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>{{ $page->name }}</title>
+@extends('layouts.export')
- <style>
- @if (!app()->environment('testing'))
- {!! file_get_contents(public_path('/dist/export-styles.css')) !!}
- @endif
- </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">
+@section('title', $page->name)
- @include('pages.page-display')
+@section('content')
+ @include('pages.parts.page-display')
- <hr>
+ <hr>
- @include('partials.entity-meta', ['entity' => $page])
-
- </div>
- </div>
+ <div class="text-muted text-small">
+ @include('entities.export-meta', ['entity' => $page])
</div>
-</div>
-</body>
-</html>
+@endsection
\ No newline at end of file