mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 17:21:11 +01:00
17 lines
422 B
Text
17 lines
422 B
Text
- content_for :content do
|
|
.admin-wrapper
|
|
.sidebar-wrapper
|
|
.sidebar
|
|
= link_to root_path do
|
|
= image_tag asset_pack_path('logo.svg'), class: 'logo', alt: 'Mastodon'
|
|
|
|
= render_navigation
|
|
.content-wrapper
|
|
.content
|
|
%h2= yield :page_title
|
|
|
|
= render 'application/flashes'
|
|
|
|
= yield
|
|
|
|
= render template: 'layouts/application', locals: { body_classes: 'admin' }
|