2017-01-02 22:31:10 +01:00
|
|
|
- content_for :header_tags do
|
2020-01-18 19:50:43 +01:00
|
|
|
= render_initial_state
|
2020-11-06 11:56:31 +01:00
|
|
|
= javascript_pack_tag 'public', crossorigin: 'anonymous'
|
2023-08-24 09:56:23 +02:00
|
|
|
= javascript_pack_tag 'admin', async: true, crossorigin: 'anonymous'
|
2017-01-28 03:56:10 +01:00
|
|
|
|
2024-09-06 15:58:46 +02:00
|
|
|
- content_for :body_classes, 'admin'
|
|
|
|
|
2016-12-13 13:42:10 +01:00
|
|
|
- content_for :content do
|
|
|
|
.admin-wrapper
|
2017-01-28 03:56:10 +01:00
|
|
|
.sidebar-wrapper
|
2019-09-20 10:52:14 +02:00
|
|
|
.sidebar-wrapper__inner
|
|
|
|
.sidebar
|
|
|
|
= link_to root_path do
|
2022-06-09 22:25:23 +02:00
|
|
|
= render_logo
|
2019-09-20 10:52:14 +02:00
|
|
|
|
|
|
|
.sidebar__toggle
|
|
|
|
.sidebar__toggle__logo
|
|
|
|
= link_to root_path do
|
2022-06-09 22:25:23 +02:00
|
|
|
= logo_as_symbol(:wordmark)
|
2019-09-20 10:52:14 +02:00
|
|
|
|
2022-10-30 02:43:15 +02:00
|
|
|
= link_to '#', class: 'sidebar__toggle__icon', 'aria-label': t('navigation.toggle_menu'), 'aria-expanded': 'false' do
|
2024-08-10 11:12:47 +02:00
|
|
|
= material_symbol 'menu'
|
|
|
|
= material_symbol 'close'
|
2019-09-20 10:52:14 +02:00
|
|
|
|
|
|
|
= render_navigation
|
2016-12-13 13:42:10 +01:00
|
|
|
|
2017-01-28 03:56:10 +01:00
|
|
|
.content-wrapper
|
|
|
|
.content
|
2022-10-22 11:44:41 +02:00
|
|
|
.content__heading
|
2022-06-09 21:57:36 +02:00
|
|
|
- if content_for?(:heading)
|
|
|
|
= yield :heading
|
|
|
|
- else
|
2022-10-22 11:44:41 +02:00
|
|
|
.content__heading__row
|
|
|
|
%h2= yield :page_title
|
2019-12-16 23:55:16 +01:00
|
|
|
|
2022-10-22 11:44:41 +02:00
|
|
|
- if content_for?(:heading_actions)
|
|
|
|
.content__heading__actions
|
|
|
|
= yield :heading_actions
|
2017-03-30 19:42:33 +02:00
|
|
|
|
2017-04-24 17:30:30 +02:00
|
|
|
= render 'application/flashes'
|
2017-03-30 19:42:33 +02:00
|
|
|
|
2017-01-28 03:56:10 +01:00
|
|
|
= yield
|
2016-12-13 13:42:10 +01:00
|
|
|
|
2019-09-20 10:52:14 +02:00
|
|
|
.sidebar-wrapper.sidebar-wrapper--empty
|
|
|
|
|
2018-10-25 00:10:01 +02:00
|
|
|
= render template: 'layouts/application'
|