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.

15 lines
473 B

  1. - content_for :content do
  2. - if user_signed_in?
  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, method: :delete, class: 'logout-link icon-button' do
  9. = fa_icon 'sign-out'
  10. .container-alt= yield
  11. .modal-layout__mastodon
  12. %div
  13. = render template: 'layouts/application'