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