mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
19 lines
406 B
Plaintext
19 lines
406 B
Plaintext
- content_for :content do
|
|
.container
|
|
.logo-container
|
|
%h1
|
|
= link_to root_path do
|
|
= image_tag 'logo.png'
|
|
%small= Rails.configuration.x.local_domain
|
|
|
|
.form-container
|
|
- if flash[:notice]
|
|
.flash-message.notice= flash[:notice]
|
|
|
|
- if flash[:alert]
|
|
.flash-message.alert= flash[:alert]
|
|
|
|
= yield
|
|
|
|
= render template: "layouts/application"
|