This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-15 04:33:25 -07:00
|
|
|
.panel
|
2017-07-24 06:09:08 -07:00
|
|
|
.panel-header
|
|
|
|
= succeed ':' do
|
|
|
|
= t 'about.contact'
|
2017-07-30 07:24:18 -07:00
|
|
|
- if contact.site_contact_email.present?
|
|
|
|
= mail_to contact.site_contact_email, nil, title: contact.site_contact_email
|
|
|
|
- else
|
|
|
|
%span= t 'about.contact_unavailable'
|
2017-04-15 04:33:25 -07:00
|
|
|
.panel-body
|
|
|
|
- if contact.contact_account
|
|
|
|
.owner
|
|
|
|
.avatar= image_tag contact.contact_account.avatar.url
|
|
|
|
.name
|
|
|
|
= link_to TagManager.instance.url_for(contact.contact_account) do
|
|
|
|
%span.display_name.emojify= display_name(contact.contact_account)
|
2017-05-07 18:35:25 -07:00
|
|
|
%span.username @#{contact.contact_account.acct}
|
2017-07-24 06:09:08 -07:00
|
|
|
- else
|
|
|
|
.owner
|
2017-07-24 08:15:15 -07:00
|
|
|
.avatar= image_tag full_asset_url('avatars/original/missing.png', skip_pipeline: true)
|
2017-07-24 06:09:08 -07:00
|
|
|
.name
|
|
|
|
%span.display_name= t 'about.contact_missing'
|
|
|
|
%span.username= t 'about.contact_unavailable'
|