You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
475 B

  1. - content_for :content do
  2. .container= yield
  3. .footer
  4. - if !user_signed_in? && single_user_mode?
  5. %span.single-user-login
  6. = link_to t('auth.login'), new_user_session_path
  7. —
  8. %span.domain= link_to site_hostname, about_path
  9. - else
  10. %span.domain= link_to site_hostname, root_path
  11. %span.powered-by
  12. != t('generic.powered_by', link: link_to('Mastodon', 'https://joinmastodon.org'))
  13. = render template: 'layouts/application'