BookStack/resources/views/pages/page-display.blade.php
Dan Brown 8b27ce3296
Fixed large content previews and improved mobile styles
Listing content previews no longer pre-wrap and instead simply break
correctly.
Updated titles to ensure they break on mobile devices.
Reduced spacing and font sizes on mobile to better adjust content to
screen size.

Fixes 
2018-03-18 12:23:48 +00:00

12 lines
297 B
PHP

<div ng-non-bindable>
<h1 class="break-text" v-pre id="bkmrk-page-title">{{$page->name}}</h1>
<div style="clear:left;"></div>
@if (isset($diff) && $diff)
{!! $diff !!}
@else
{!! isset($page->renderedHTML) ? $page->renderedHTML : $page->html !!}
@endif
</div>