]> BookStack Code Mirror - bookstack/blobdiff - resources/views/pages/page-display.blade.php
Fixes typo causing the message not to be displayed
[bookstack] / resources / views / pages / page-display.blade.php
index babc4ccfd00b8f4b7309d703101e8604006aeb03..fb6ca30451e35df171ac5b843612d1d347a5b102 100644 (file)
@@ -1,5 +1,12 @@
 <div ng-non-bindable>
-    <h1 id="bkmrk-page-title">{{$page->name}}</h1>
 
-    {!! $page->html !!}
+    <h1 id="bkmrk-page-title" class="float left">{{$page->name}}</h1>
+
+    <div style="clear:left;"></div>
+
+    @if (isset($diff) && $diff)
+        {!! $diff !!}
+    @else
+        {!! $page->html !!}
+    @endif
 </div>
\ No newline at end of file