2016-03-05 16:43:05 -05:00
|
|
|
- content_for :content do
|
2016-03-12 10:09:46 -05:00
|
|
|
.container
|
|
|
|
.logo-container
|
|
|
|
%h1
|
|
|
|
= link_to root_path do
|
2016-09-26 17:55:21 -04:00
|
|
|
= image_tag 'logo.png'
|
2016-03-05 16:43:05 -05:00
|
|
|
|
2016-03-12 10:09:46 -05:00
|
|
|
.form-container
|
2016-10-03 10:38:22 -04:00
|
|
|
- if flash[:notice]
|
2016-10-18 10:37:15 -04:00
|
|
|
.flash-message.notice
|
|
|
|
%strong= flash[:notice]
|
2016-10-03 10:38:22 -04:00
|
|
|
|
|
|
|
- if flash[:alert]
|
2016-10-18 10:37:15 -04:00
|
|
|
.flash-message.alert
|
|
|
|
%strong= flash[:alert]
|
2016-10-03 10:38:22 -04:00
|
|
|
|
2016-03-12 10:09:46 -05:00
|
|
|
= yield
|
2016-03-05 16:43:05 -05:00
|
|
|
|
|
|
|
= render template: "layouts/application"
|