2017-01-02 16:31:10 -05:00
|
|
|
- content_for :header_tags do
|
2017-05-02 20:04:16 -04:00
|
|
|
= javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
|
2017-01-27 21:56:10 -05:00
|
|
|
|
2016-12-13 07:42:10 -05:00
|
|
|
- content_for :content do
|
|
|
|
.admin-wrapper
|
2017-01-27 21:56:10 -05:00
|
|
|
.sidebar-wrapper
|
2019-09-20 04:52:14 -04: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 07:42:10 -05:00
|
|
|
|
2017-01-27 21:56:10 -05:00
|
|
|
.content-wrapper
|
|
|
|
.content
|
2019-12-16 17:55:16 -05:00
|
|
|
.content-heading
|
|
|
|
%h2= yield :page_title
|
|
|
|
|
|
|
|
- if :page_heading_actions
|
|
|
|
.content-heading-actions
|
|
|
|
= yield :page_heading_actions
|
2017-03-30 13:42:33 -04:00
|
|
|
|
2017-04-24 11:30:30 -04:00
|
|
|
= render 'application/flashes'
|
2017-03-30 13:42:33 -04:00
|
|
|
|
2017-01-27 21:56:10 -05:00
|
|
|
= yield
|
2016-12-13 07:42:10 -05:00
|
|
|
|
2019-09-20 04:52:14 -04:00
|
|
|
.sidebar-wrapper.sidebar-wrapper--empty
|
|
|
|
|
2018-10-24 18:10:01 -04:00
|
|
|
= render template: 'layouts/application'
|