mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 23:49:37 +00:00
d5a3bdb7aa
- Moved "common" template partials, that are only used in layouts, to layouts/parts folder. - Simplified HTML structure of header template. - Extracted logo and links from header template to simplify. - Added header-links-start template for easier extension/customization without needing to override full list of links. - Added test to cover usage of this. For #4564
29 lines
1.3 KiB
PHP
29 lines
1.3 KiB
PHP
<div component="notification"
|
|
option:notification:type="success"
|
|
option:notification:auto-hide="true"
|
|
option:notification:show="{{ session()->has('success') ? 'true' : 'false' }}"
|
|
style="display: none;"
|
|
class="notification pos"
|
|
role="alert">
|
|
@icon('check-circle') <span>@if(session()->has('success')){!! nl2br(htmlentities(session()->get('success'))) !!}@endif</span><div class="dismiss">@icon('close')</div>
|
|
</div>
|
|
|
|
<div component="notification"
|
|
option:notification:type="warning"
|
|
option:notification:auto-hide="false"
|
|
option:notification:show="{{ session()->has('warning') ? 'true' : 'false' }}"
|
|
style="display: none;"
|
|
class="notification warning"
|
|
role="alert">
|
|
@icon('info') <span>@if(session()->has('warning')){!! nl2br(htmlentities(session()->get('warning'))) !!}@endif</span><div class="dismiss">@icon('close')</div>
|
|
</div>
|
|
|
|
<div component="notification"
|
|
option:notification:type="error"
|
|
option:notification:auto-hide="false"
|
|
option:notification:show="{{ session()->has('error') ? 'true' : 'false' }}"
|
|
style="display: none;"
|
|
class="notification neg"
|
|
role="alert">
|
|
@icon('danger') <span>@if(session()->has('error')){!! nl2br(htmlentities(session()->get('error'))) !!}@endif</span><div class="dismiss">@icon('close')</div>
|
|
</div> |