2019-07-02 08:10:25 +01:00
|
|
|
- i ||= 0
|
|
|
|
|
2020-05-29 00:09:14 +01:00
|
|
|
%td.in-email-status{ class: i.zero? ? 'content-start' : nil }
|
|
|
|
%table{ cellspacing: 0, cellpadding: 0, :style => "margin:15px 0;" }
|
|
|
|
%tbody
|
|
|
|
%tr
|
|
|
|
%td{ :style => "padding:10px 15px;border:1px solid #D3D3D5;border-radius:8px;" }
|
|
|
|
%table{ cellspacing: 0, cellpadding: 0 }
|
2019-07-02 08:10:25 +01:00
|
|
|
%tbody
|
|
|
|
%tr
|
2020-05-29 00:09:14 +01:00
|
|
|
%td{ align: 'left', width: 40, height: 40 }
|
|
|
|
= image_tag full_asset_url(status.account.avatar.url), alt:'', :style => "height:40px;width:40px;border-radius:9999px;overflow:hidden;"
|
|
|
|
%td{ align: 'left', :style => "color:#000;font-size:16px;padding:5px 10px;" }
|
|
|
|
%bdi= display_name(status.account)
|
|
|
|
= "@#{status.account.acct}"
|
2019-07-02 08:10:25 +01:00
|
|
|
|
2020-05-29 00:09:14 +01:00
|
|
|
- if status.spoiler_text?
|
|
|
|
%div{ dir: rtl_status?(status) ? 'rtl' : 'ltr' }
|
|
|
|
%p
|
|
|
|
= Formatter.instance.format_spoiler(status)
|
2019-07-02 08:10:25 +01:00
|
|
|
|
2020-05-29 00:09:14 +01:00
|
|
|
%div{ dir: rtl_status?(status) ? 'rtl' : 'ltr' }
|
2020-07-02 02:39:12 +01:00
|
|
|
= Formatter.instance.plaintext(status)
|
2019-07-02 08:10:25 +01:00
|
|
|
|
2020-05-29 00:09:14 +01:00
|
|
|
%p
|
|
|
|
= link_to l(status.created_at), web_url("#{status.account.username}/posts/#{status.id}")
|