mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
18 lines
422 B
Plaintext
18 lines
422 B
Plaintext
- 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' }
|