2017-08-05 02:24:58 +00:00
|
|
|
- content_for :content do
|
2018-08-18 01:03:12 +00:00
|
|
|
- if user_signed_in? && !@hide_header
|
2017-08-05 02:24:58 +00:00
|
|
|
.account-header
|
|
|
|
.avatar= image_tag current_account.avatar.url(:original)
|
|
|
|
.name
|
|
|
|
= t 'users.signed_in_as'
|
|
|
|
%span.username @#{current_account.local_username_and_domain}
|
2018-09-09 02:10:44 +00:00
|
|
|
= link_to destroy_user_session_path(continue: true), method: :delete, class: 'logout-link icon-button' do
|
2017-08-05 02:24:58 +00:00
|
|
|
= fa_icon 'sign-out'
|
|
|
|
|
2018-02-22 02:04:27 +00:00
|
|
|
.container-alt= yield
|
2022-03-01 15:48:58 +00:00
|
|
|
|
2018-01-02 04:07:56 +00:00
|
|
|
.modal-layout__mastodon
|
|
|
|
%div
|
2022-03-01 15:48:58 +00:00
|
|
|
%img{alt: '', draggable: 'false', src: mascot_url }
|
2017-08-05 02:24:58 +00:00
|
|
|
|
|
|
|
= render template: 'layouts/application'
|