mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
cf5d51e7b8
- Set proper semantic tags for main parts of content. - Removed focus-trap from tag manager/autosuggest. - Set better accessibility labelling on tag manager. - Updated collapsible sections to be keyboard navigatable. - Improved input focus styling to better fit theme. - Updated custom styled file picker to be accessible via keyboard. Related to #1320
24 lines
680 B
PHP
24 lines
680 B
PHP
@extends('tri-layout')
|
|
|
|
@section('body')
|
|
<div class="mt-m">
|
|
<main class="content-wrap card">
|
|
<div class="page-content" page-display="{{ $customHomepage->id }}">
|
|
@include('pages.page-display', ['page' => $customHomepage])
|
|
</div>
|
|
</main>
|
|
</div>
|
|
@stop
|
|
|
|
@section('left')
|
|
@include('common.home-sidebar')
|
|
@stop
|
|
|
|
@section('right')
|
|
<div class="actions mb-xl">
|
|
<h5>{{ trans('common.actions') }}</h5>
|
|
<div class="icon-list text-primary">
|
|
@include('components.expand-toggle', ['target' => '.entity-list.compact .entity-item-snippet', 'key' => 'home-details'])
|
|
</div>
|
|
</div>
|
|
@stop |