2021-08-22 13:15:58 +01:00
|
|
|
@extends('layouts.base')
|
2018-12-01 20:28:17 +00:00
|
|
|
|
2022-07-23 18:29:04 +01:00
|
|
|
@push('body-class', 'tri-layout ')
|
2021-04-19 21:41:13 +01:00
|
|
|
@section('content-components', 'tri-layout')
|
2018-12-01 20:28:17 +00:00
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2021-04-19 21:41:13 +01:00
|
|
|
<div class="tri-layout-mobile-tabs print-hidden">
|
2019-04-13 17:36:27 +01:00
|
|
|
<div class="grid half no-break no-gap">
|
2021-04-19 21:41:13 +01:00
|
|
|
<button type="button"
|
|
|
|
refs="tri-layout@tab"
|
|
|
|
data-tab="info"
|
|
|
|
aria-label="{{ trans('common.tab_info_label') }}"
|
2023-01-28 16:06:11 +00:00
|
|
|
class="tri-layout-mobile-tab px-m py-m text-link">
|
2019-04-13 17:36:27 +01:00
|
|
|
{{ trans('common.tab_info') }}
|
2021-04-19 21:41:13 +01:00
|
|
|
</button>
|
|
|
|
<button type="button"
|
|
|
|
refs="tri-layout@tab"
|
|
|
|
data-tab="content"
|
|
|
|
aria-label="{{ trans('common.tab_content_label') }}"
|
|
|
|
aria-selected="true"
|
2023-01-28 16:06:11 +00:00
|
|
|
class="tri-layout-mobile-tab px-m py-m text-link active">
|
2019-04-13 17:36:27 +01:00
|
|
|
{{ trans('common.tab_content') }}
|
2021-04-19 21:41:13 +01:00
|
|
|
</button>
|
2019-04-13 17:36:27 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-04-19 21:41:13 +01:00
|
|
|
<div refs="tri-layout@container" class="tri-layout-container" @yield('container-attrs') >
|
2018-12-08 23:34:06 +00:00
|
|
|
|
2022-05-14 13:55:03 +01:00
|
|
|
<div class="tri-layout-left print-hidden" id="sidebar">
|
2019-08-25 15:44:51 +01:00
|
|
|
<aside class="tri-layout-left-contents">
|
2018-12-09 13:42:35 +00:00
|
|
|
@yield('left')
|
2019-08-25 15:44:51 +01:00
|
|
|
</aside>
|
2018-12-01 20:28:17 +00:00
|
|
|
</div>
|
|
|
|
|
2018-12-08 23:34:06 +00:00
|
|
|
<div class="@yield('body-wrap-classes') tri-layout-middle">
|
2021-06-15 20:58:45 +01:00
|
|
|
<div id="main-content" class="tri-layout-middle-contents">
|
2019-03-30 14:27:00 +00:00
|
|
|
@yield('body')
|
|
|
|
</div>
|
2018-12-01 20:28:17 +00:00
|
|
|
</div>
|
|
|
|
|
2022-05-14 13:55:03 +01:00
|
|
|
<div class="tri-layout-right print-hidden">
|
2019-08-25 15:44:51 +01:00
|
|
|
<aside class="tri-layout-right-contents">
|
2018-12-09 13:42:35 +00:00
|
|
|
@yield('right')
|
2019-08-25 15:44:51 +01:00
|
|
|
</aside>
|
2018-12-01 20:28:17 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|