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
20 lines
1.1 KiB
PHP
20 lines
1.1 KiB
PHP
<form component="global-search" action="{{ url('/search') }}" method="GET" class="search-box" role="search" tabindex="0">
|
|
<button id="header-search-box-button"
|
|
refs="global-search@button"
|
|
type="submit"
|
|
aria-label="{{ trans('common.search') }}"
|
|
tabindex="-1">@icon('search')</button>
|
|
<input id="header-search-box-input"
|
|
refs="global-search@input"
|
|
type="text"
|
|
name="term"
|
|
data-shortcut="global_search"
|
|
autocomplete="off"
|
|
aria-label="{{ trans('common.search') }}" placeholder="{{ trans('common.search') }}"
|
|
value="{{ $searchTerm ?? '' }}">
|
|
<div refs="global-search@suggestions" class="global-search-suggestions card">
|
|
<div refs="global-search@loading" class="text-center px-m global-search-loading">@include('common.loading-icon')</div>
|
|
<div refs="global-search@suggestion-results" class="px-m"></div>
|
|
<button class="text-button card-footer-link" type="submit">{{ trans('common.view_all') }}</button>
|
|
</div>
|
|
</form> |