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