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

12 lines
240 B
PHP
Raw Normal View History

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