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