You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
407 B

5 years ago
  1. @extends('layout')
  2. @inject('markdownHelper', 'SuperGear\Helpers\MarkdownHelper')
  3. @section('content')
  4. <main>
  5. <header class="page__header">
  6. <h1 class="page__title">
  7. {{ $page['data']['title'] }}
  8. </h1>
  9. </header>
  10. <div class="content">
  11. {!! $markdownHelper->text($page['data']['content']) !!}
  12. </div>
  13. </main>
  14. @endsection