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