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