blob: bf4113baf23af718c365f5d1c79b6f72d6e696aa (
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', integrity: true
- 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"
|