mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
13 lines
239 B
PHP
13 lines
239 B
PHP
|
@extends('base')
|
||
|
|
||
|
@section('content')
|
||
|
|
||
|
<a href="{{$page->getUrl() . '/edit'}}" class="button primary float right">Edit Page</a>
|
||
|
|
||
|
<h1>{{$page->name}}</h1>
|
||
|
|
||
|
<div class="page-content">
|
||
|
{!! $page->html !!}
|
||
|
</div>
|
||
|
@stop
|