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