2016-12-13 06:42:10 -06:00
|
|
|
- content_for :content do
|
|
|
|
.admin-wrapper
|
2017-01-27 20:56:10 -06:00
|
|
|
.sidebar-wrapper
|
|
|
|
.sidebar
|
|
|
|
= link_to root_path do
|
2017-07-22 19:40:39 -05:00
|
|
|
= image_tag asset_pack_path('logo.svg'), class: 'logo', alt: 'Mastodon'
|
2016-12-13 06:42:10 -06:00
|
|
|
|
2017-01-27 20:56:10 -06:00
|
|
|
= render_navigation
|
|
|
|
.content-wrapper
|
|
|
|
.content
|
|
|
|
%h2= yield :page_title
|
2017-03-30 12:42:33 -05:00
|
|
|
|
2017-04-24 10:30:30 -05:00
|
|
|
= render 'application/flashes'
|
2017-03-30 12:42:33 -05:00
|
|
|
|
2017-01-27 20:56:10 -06:00
|
|
|
= yield
|
2016-12-13 06:42:10 -06:00
|
|
|
|
2017-05-07 20:35:25 -05:00
|
|
|
= render template: 'layouts/application', locals: { body_classes: 'admin' }
|