The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

38 lines
927 B

  1. - content_for :header_tags do
  2. = javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
  3. - content_for :content do
  4. .admin-wrapper
  5. .sidebar-wrapper
  6. .sidebar-wrapper__inner
  7. .sidebar
  8. = link_to root_path do
  9. = image_pack_tag 'logo.svg', class: 'logo', alt: 'Mastodon'
  10. .sidebar__toggle
  11. .sidebar__toggle__logo
  12. = link_to root_path do
  13. = svg_logo_full
  14. = link_to '#', class: 'sidebar__toggle__icon' do
  15. = fa_icon 'bars'
  16. = render_navigation
  17. .content-wrapper
  18. .content
  19. .content-heading
  20. %h2= yield :page_title
  21. - if :heading_actions
  22. .content-heading-actions
  23. = yield :heading_actions
  24. = render 'application/flashes'
  25. = yield
  26. .sidebar-wrapper.sidebar-wrapper--empty
  27. = render template: 'layouts/application'