This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-05 13:43:05 -08:00
|
|
|
- content_for :content do
|
2016-03-12 07:09:46 -08:00
|
|
|
.container
|
|
|
|
.logo-container
|
|
|
|
%h1
|
|
|
|
= link_to root_path do
|
2016-09-26 14:55:21 -07:00
|
|
|
= image_tag 'logo.png'
|
2016-03-05 13:43:05 -08:00
|
|
|
|
2016-03-12 07:09:46 -08:00
|
|
|
.form-container
|
2016-10-03 07:38:22 -07:00
|
|
|
- if flash[:notice]
|
2016-10-18 07:37:15 -07:00
|
|
|
.flash-message.notice
|
|
|
|
%strong= flash[:notice]
|
2016-10-03 07:38:22 -07:00
|
|
|
|
|
|
|
- if flash[:alert]
|
2016-10-18 07:37:15 -07:00
|
|
|
.flash-message.alert
|
|
|
|
%strong= flash[:alert]
|
2016-10-03 07:38:22 -07:00
|
|
|
|
2016-03-12 07:09:46 -08:00
|
|
|
= yield
|
2016-03-05 13:43:05 -08:00
|
|
|
|
|
|
|
= render template: "layouts/application"
|