The code powering m.abunchtell.com https://m.abunchtell.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

19 строки
850 B

  1. .public-account-bio
  2. - unless account.fields.empty?
  3. .account__header__fields
  4. - account.fields.each do |field|
  5. %dl
  6. %dt.emojify{ title: field.name }= Formatter.instance.format_field(account, field.name, custom_emojify: true)
  7. %dd{ title: field.value, class: custom_field_classes(field) }
  8. - if field.verified?
  9. %span.verified__mark{ title: t('accounts.link_verified_on', date: l(field.verified_at)) }
  10. = fa_icon 'check'
  11. = Formatter.instance.format_field(account, field.value, custom_emojify: true)
  12. = account_badge(account)
  13. - if account.note.present?
  14. .account__header__content.emojify= Formatter.instance.simplified_format(account, custom_emojify: true)
  15. .public-account-bio__extra
  16. = t 'accounts.joined', date: l(account.created_at, format: :month)