blob: db841d27a7ae52e5133e52da06c60cd22f10acfb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
- content_for :header_tags do
= javascript_include_tag 'application_public'
- content_for :content do
.container
.logo-container
%h1
= link_to root_path do
= image_tag 'logo.png'
.form-container
- if flash[:notice]
.flash-message.notice
%strong= flash[:notice]
- if flash[:alert]
.flash-message.alert
%strong= flash[:alert]
= yield
= render template: "layouts/application"
|