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.
16 lines
619 B
16 lines
619 B
- account_url = local_assigns[:admin] ? admin_account_path(account.id) : ActivityPub::TagManager.instance.url_for(account) |
|
|
|
.card.h-card |
|
= link_to account_url, target: '_blank', rel: 'noopener noreferrer' do |
|
.card__img |
|
= image_tag account.header.url, alt: '' |
|
.card__bar |
|
.avatar |
|
= image_tag account.avatar.url, alt: '', width: 48, height: 48, class: 'u-photo' |
|
|
|
.display-name |
|
%bdi |
|
%strong.emojify.p-name= display_name(account, custom_emojify: true) |
|
%span |
|
= acct(account) |
|
= fa_icon('lock', { data: ({hidden: true} unless account.locked?)})
|
|
|