2017-01-02 13:31:10 -08:00
|
|
|
- content_for :header_tags do
|
2017-05-02 17:04:16 -07:00
|
|
|
= javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
|
2017-01-27 18:56:10 -08:00
|
|
|
|
2016-12-13 04:42:10 -08:00
|
|
|
- content_for :content do
|
|
|
|
.admin-wrapper
|
2017-01-27 18:56:10 -08:00
|
|
|
.sidebar-wrapper
|
|
|
|
.sidebar
|
|
|
|
= link_to root_path do
|
2019-03-15 07:05:31 -07:00
|
|
|
= image_pack_tag 'logo.svg', class: 'logo', alt: 'Mastodon'
|
2016-12-13 04:42:10 -08:00
|
|
|
|
2017-01-27 18:56:10 -08:00
|
|
|
= render_navigation
|
|
|
|
.content-wrapper
|
|
|
|
.content
|
|
|
|
%h2= yield :page_title
|
2017-03-30 10:42:33 -07:00
|
|
|
|
2017-04-24 08:30:30 -07:00
|
|
|
= render 'application/flashes'
|
2017-03-30 10:42:33 -07:00
|
|
|
|
2017-01-27 18:56:10 -08:00
|
|
|
= yield
|
2016-12-13 04:42:10 -08:00
|
|
|
|
2018-10-24 15:10:01 -07:00
|
|
|
= render template: 'layouts/application'
|