* Add sprockets-rails to Gemfile * Add sprockets-rails to Gemfile.lock * Update show.html.haml * Update index.html.haml * Update admin.html.haml * Update auth.html.haml * Update embedded.html.haml * Update public.html.haml
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			485 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			485 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| - content_for :header_tags do
 | |
|   = javascript_include_tag 'application_public', integrity: true
 | |
| 
 | |
| - content_for :content do
 | |
|   .container
 | |
|     .logo-container
 | |
|       %h1
 | |
|         = link_to root_path do
 | |
|           = image_tag 'logo.png'
 | |
| 
 | |
|     .form-container
 | |
|       - if flash[:notice]
 | |
|         .flash-message.notice
 | |
|           %strong= flash[:notice]
 | |
| 
 | |
|       - if flash[:alert]
 | |
|         .flash-message.alert
 | |
|           %strong= flash[:alert]
 | |
| 
 | |
|       = yield
 | |
| 
 | |
| = render template: "layouts/application"
 |