about summary refs log tree commit diff
path: root/app/views/layouts/admin.html.haml
blob: 083f2fac7644dd78f66538c4f30b7555f797f434 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- content_for :header_tags do
  = javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'

- content_for :content do
  .admin-wrapper
    .sidebar-wrapper
      .sidebar
        = link_to root_path do
          = image_pack_tag 'logo.svg', class: 'logo', alt: 'Mastodon'

        = render_navigation
    .content-wrapper
      .content
        %h2= yield :page_title

        = render 'application/flashes'

        = yield

= render template: 'layouts/application'