2016-10-06 21:27:58 +02:00
|
|
|
- content_for :header_tags do
|
2017-04-15 22:48:30 +02:00
|
|
|
= javascript_include_tag 'application_public', integrity: true, crossorigin: 'anonymous'
|
2016-10-06 21:27:58 +02:00
|
|
|
|
2016-03-05 23:42:40 +01:00
|
|
|
- content_for :content do
|
2016-03-12 16:09:46 +01:00
|
|
|
.container= yield
|
2016-03-05 23:42:40 +01:00
|
|
|
.footer
|
2017-04-25 15:06:24 +02:00
|
|
|
- if !user_signed_in? && single_user_mode?
|
|
|
|
%span.single-user-login
|
|
|
|
= link_to t('auth.login'), new_user_session_path
|
|
|
|
= "\u2014"
|
2017-04-18 00:16:32 +02:00
|
|
|
%span.domain= link_to site_hostname, root_path
|
2016-03-25 03:22:26 +01:00
|
|
|
%span.powered-by
|
2017-01-11 03:24:14 +01:00
|
|
|
= t('generic.powered_by', link: link_to('Mastodon', 'https://github.com/tootsuite/mastodon')).html_safe
|
2016-03-05 23:42:40 +01:00
|
|
|
|
|
|
|
= render template: "layouts/application"
|