BookStack/resources/views/pages/page-display.blade.php

12 lines
240 B
PHP
Raw Normal View History

2015-12-31 02:38:18 +08:00
<div ng-non-bindable>
<h1 id="bkmrk-page-title" class="float left">{{$page->name}}</h1>
<div style="clear:left;"></div>
2016-07-08 01:42:21 +08:00
@if (isset($diff) && $diff)
{!! $diff !!}
@else
{!! $page->html !!}
@endif
</div>