mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 07:21:13 +01:00
54148b9a4a
Conflicts: app/controllers/authorize_follows_controller.rb app/javascript/styles/mastodon/components.scss
15 lines
469 B
Text
15 lines
469 B
Text
- content_for :content do
|
|
- if user_signed_in?
|
|
.account-header
|
|
.avatar= image_tag current_account.avatar.url(:original)
|
|
.name
|
|
= t 'users.signed_in_as'
|
|
%span.username @#{current_account.local_username_and_domain}
|
|
= link_to destroy_user_session_path, method: :delete, class: 'logout-link icon-button' do
|
|
= fa_icon 'sign-out'
|
|
|
|
.container= yield
|
|
.modal-layout__mastodon
|
|
%div
|
|
|
|
= render template: 'layouts/application'
|