~cytrogen/masto-fe

ref: 16681e0f20e1f8584e11439953c8d59b322571f5 masto-fe/app/views/application/_card.html.haml -rw-r--r-- 667 bytes
16681e0f — Claire Add admin notifications for new Mastodon versions (#26582) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- account_url = local_assigns[:admin] ? admin_account_path(account.id) : ActivityPub::TagManager.instance.url_for(account)
- compact ||= false

.card.h-card
  = link_to account_url, target: '_blank', rel: 'noopener noreferrer' do
    - unless compact
      .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?) })