This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-12-22 15:04:52 -08:00
|
|
|
- content_for :header_tags do
|
2017-05-02 17:04:16 -07:00
|
|
|
= javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
|
2016-12-22 15:04:52 -08:00
|
|
|
|
2016-03-05 13:43:05 -08:00
|
|
|
- content_for :content do
|
2016-03-12 07:09:46 -08:00
|
|
|
.container
|
|
|
|
.logo-container
|
|
|
|
%h1
|
|
|
|
= link_to root_path do
|
2017-07-22 17:40:39 -07:00
|
|
|
= image_tag asset_pack_path('logo_full.svg'), alt: 'Mastodon'
|
2016-03-05 13:43:05 -08:00
|
|
|
|
2016-03-12 07:09:46 -08:00
|
|
|
.form-container
|
2017-04-22 19:22:34 -07:00
|
|
|
= render 'flashes'
|
2016-10-03 07:38:22 -07:00
|
|
|
|
2016-03-12 07:09:46 -08:00
|
|
|
= yield
|
2016-03-05 13:43:05 -08:00
|
|
|
|
2017-05-07 18:35:25 -07:00
|
|
|
= render template: 'layouts/application'
|