mastodon/app/views/layouts/admin.html.haml

21 lines
490 B
Plaintext
Raw Normal View History

- content_for :header_tags do
= javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
2016-12-13 13:42:10 +01:00
- content_for :content do
.admin-wrapper
.sidebar-wrapper
.sidebar
= link_to root_path do
2019-05-22 23:38:22 +02:00
= image_pack_tag 'logo-cybre.png', class: 'logo', alt: 'Cybrespace'
2016-12-13 13:42:10 +01:00
= render_navigation
.content-wrapper
.content
%h2= yield :page_title
= render 'application/flashes'
= yield
2016-12-13 13:42:10 +01:00
= render template: 'layouts/application'