mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-02 02:05:31 +08: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
|