2017-01-03 08:31:10 +11:00
|
|
|
- content_for :header_tags do
|
2020-01-19 05:50:43 +11:00
|
|
|
= render_initial_state
|
2020-11-06 21:56:31 +11:00
|
|
|
= javascript_pack_tag 'public', crossorigin: 'anonymous'
|
2017-01-28 13:56:10 +11:00
|
|
|
|
2016-12-13 23:42:10 +11:00
|
|
|
- content_for :content do
|
|
|
|
.admin-wrapper
|
2017-01-28 13:56:10 +11:00
|
|
|
.sidebar-wrapper
|
2019-09-20 18:52:14 +10:00
|
|
|
.sidebar-wrapper__inner
|
|
|
|
.sidebar
|
|
|
|
= link_to root_path do
|
|
|
|
= image_pack_tag 'logo.svg', class: 'logo', alt: 'Mastodon'
|
|
|
|
|
|
|
|
.sidebar__toggle
|
|
|
|
.sidebar__toggle__logo
|
|
|
|
= link_to root_path do
|
|
|
|
= svg_logo_full
|
|
|
|
|
|
|
|
= link_to '#', class: 'sidebar__toggle__icon' do
|
|
|
|
= fa_icon 'bars'
|
|
|
|
|
|
|
|
= render_navigation
|
2016-12-13 23:42:10 +11:00
|
|
|
|
2017-01-28 13:56:10 +11:00
|
|
|
.content-wrapper
|
|
|
|
.content
|
2019-12-17 09:55:16 +11:00
|
|
|
.content-heading
|
|
|
|
%h2= yield :page_title
|
|
|
|
|
2020-01-10 11:10:17 +11:00
|
|
|
- if :heading_actions
|
2019-12-17 09:55:16 +11:00
|
|
|
.content-heading-actions
|
2020-01-10 11:10:17 +11:00
|
|
|
= yield :heading_actions
|
2017-03-31 04:42:33 +11:00
|
|
|
|
2017-04-25 01:30:30 +10:00
|
|
|
= render 'application/flashes'
|
2017-03-31 04:42:33 +11:00
|
|
|
|
2017-01-28 13:56:10 +11:00
|
|
|
= yield
|
2016-12-13 23:42:10 +11:00
|
|
|
|
2019-09-20 18:52:14 +10:00
|
|
|
.sidebar-wrapper.sidebar-wrapper--empty
|
|
|
|
|
2018-10-25 09:10:01 +11:00
|
|
|
= render template: 'layouts/application'
|