mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
a61c9c5e98
- Primarily moved and re-organised view files. - Included readme within views to document the convention. - Fixed some issues with page field select list in previous commit. - Tweaked some route names while going through. - Split some views out further. Closes #2805
24 lines
1.3 KiB
PHP
24 lines
1.3 KiB
PHP
{{ $templates->links() }}
|
|
|
|
@foreach($templates as $template)
|
|
<div class="card template-item border-card p-m mb-m" tabindex="0"
|
|
aria-label="{{ trans('entities.templates_replace_content') }} - {{ $template->name }}"
|
|
draggable="true" template-id="{{ $template->id }}">
|
|
<div class="template-item-content" title="{{ trans('entities.templates_replace_content') }}">
|
|
<div>{{ $template->name }}</div>
|
|
<div class="text-muted">{{ trans('entities.meta_updated', ['timeLength' => $template->updated_at->diffForHumans()]) }}</div>
|
|
</div>
|
|
<div class="template-item-actions">
|
|
<button type="button"
|
|
title="{{ trans('entities.templates_prepend_content') }}"
|
|
aria-label="{{ trans('entities.templates_prepend_content') }} - {{ $template->name }}"
|
|
template-action="prepend">@icon('chevron-up')</button>
|
|
<button type="button"
|
|
title="{{ trans('entities.templates_append_content') }}"
|
|
aria-label="{{ trans('entities.templates_append_content') }} -- {{ $template->name }}"
|
|
template-action="append">@icon('chevron-down')</button>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
|
|
{{ $templates->links() }} |