2016-10-06 12:27:58 -07:00
|
|
|
- content_for :header_tags do
|
2017-04-15 13:48:30 -07:00
|
|
|
= javascript_include_tag 'application_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
|
|
|
|
= "\u2014"
|
2017-04-17 15:16:32 -07:00
|
|
|
%span.domain= link_to site_hostname, root_path
|
2016-03-24 19:22:26 -07:00
|
|
|
%span.powered-by
|
2017-01-10 18:24:14 -08:00
|
|
|
= t('generic.powered_by', link: link_to('Mastodon', 'https://github.com/tootsuite/mastodon')).html_safe
|
2016-03-05 14:42:40 -08:00
|
|
|
|
|
|
|
= render template: "layouts/application"
|