public.html.haml 527 B

123456789101112131415
  1. - content_for :header_tags do
  2. = javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
  3. - content_for :content do
  4. .container= yield
  5. .footer
  6. - if !user_signed_in? && single_user_mode?
  7. %span.single-user-login
  8. = link_to t('auth.login'), new_user_session_path
  9. \u2014
  10. %span.domain= link_to site_hostname, root_path
  11. %span.powered-by
  12. != t('generic.powered_by', link: link_to('Mastodon', 'https://github.com/tootsuite/mastodon'))
  13. = render template: 'layouts/application'