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.

17 lines
639 B

  1. - content_for :content do
  2. - if user_signed_in? && !@hide_header
  3. .account-header
  4. .avatar= image_tag current_account.avatar.url(:original)
  5. .name
  6. = t 'users.signed_in_as'
  7. %span.username @#{current_account.local_username_and_domain}
  8. = link_to destroy_user_session_path(continue: true), method: :delete, class: 'logout-link icon-button', title: t('applications.logout'), 'aria-label': t('applications.logout') do
  9. = fa_icon 'sign-out'
  10. .container-alt= yield
  11. .modal-layout__mastodon
  12. %div
  13. %img{ alt: '', draggable: 'false', src: mascot_url }
  14. = render template: 'layouts/application'