This repository has been archived on 2024-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/views/layouts/auth.html.haml

19 lines
406 B
Plaintext
Raw Normal View History

- 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
2016-10-03 10:38:22 -04:00
- if flash[:notice]
.flash-message.notice= flash[:notice]
- if flash[:alert]
.flash-message.alert= flash[:alert]
= yield
= render template: "layouts/application"