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
|
|
|
|
.sidebar
|
|
|
|
= link_to root_path do
|
2017-07-22 20:40:39 -04:00
|
|
|
= image_tag asset_pack_path('logo.svg'), class: 'logo', alt: 'Mastodon'
|
2016-12-13 07:42:10 -05:00
|
|
|
|
2017-01-27 21:56:10 -05:00
|
|
|
= render_navigation
|
|
|
|
.content-wrapper
|
|
|
|
.content
|
|
|
|
%h2= yield :page_title
|
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
|
|
|
|
2017-05-07 21:35:25 -04:00
|
|
|
= render template: 'layouts/application', locals: { body_classes: 'admin' }
|