mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
5e11f3a6e1
Conflicts: - `app/javascript/styles/mastodon/modal.scss`: For some reason we changed the file loading path in glitch-soc, but now upstream has completely changed how the logo is loaded. Applied upstream changes.
17 lines
565 B
Plaintext
17 lines
565 B
Plaintext
- content_for :content do
|
|
- if user_signed_in? && !@hide_header
|
|
.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(continue: true), method: :delete, class: 'logout-link icon-button' do
|
|
= fa_icon 'sign-out'
|
|
|
|
.container-alt= yield
|
|
.modal-layout__mastodon
|
|
%div
|
|
%img{alt:'', draggable:'false', src:"#{mascot_url}"}
|
|
|
|
= render template: 'layouts/application'
|