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