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