20 lines
		
	
	
	
		
			494 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			494 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| - 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_tag asset_pack_path('logo.svg'), class: 'logo', alt: 'Mastodon'
 | |
| 
 | |
|         = render_navigation
 | |
|     .content-wrapper
 | |
|       .content
 | |
|         %h2= yield :page_title
 | |
| 
 | |
|         = render 'application/flashes'
 | |
| 
 | |
|         = yield
 | |
| 
 | |
| = render template: 'layouts/application'
 |