2016-10-06 15:27:58 -04:00
|
|
|
- content_for :header_tags do
|
2017-05-02 20:04:16 -04:00
|
|
|
= javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
|
2016-10-06 15:27:58 -04:00
|
|
|
|
2016-03-05 17:42:40 -05:00
|
|
|
- content_for :content do
|
2016-03-12 10:09:46 -05:00
|
|
|
.container= yield
|
2016-03-05 17:42:40 -05:00
|
|
|
.footer
|
2017-04-25 09:06:24 -04:00
|
|
|
- if !user_signed_in? && single_user_mode?
|
|
|
|
%span.single-user-login
|
|
|
|
= link_to t('auth.login'), new_user_session_path
|
2017-05-25 08:05:54 -04:00
|
|
|
—
|
2017-04-17 18:16:32 -04:00
|
|
|
%span.domain= link_to site_hostname, root_path
|
2016-03-24 22:22:26 -04:00
|
|
|
%span.powered-by
|
2017-06-12 21:55:28 -04:00
|
|
|
!= t('generic.powered_by', link: link_to('Mastodon', 'https://joinmastodon.org'))
|
2016-03-05 17:42:40 -05:00
|
|
|
|
2017-05-07 21:35:25 -04:00
|
|
|
= render template: 'layouts/application'
|