1
0

reblog.html.haml 960 B

12345678910111213141516
  1. = content_for :heading do
  2. = render 'application/mailer/heading',
  3. image_url: frontend_asset_url('images/mailer-new/heading/boost.png'),
  4. subtitle: t('notification_mailer.reblog.body', name: @account.pretty_acct),
  5. title: t('notification_mailer.reblog.title')
  6. %table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
  7. %tr
  8. %td.email-body-padding-td
  9. %table.email-inner-card-table{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
  10. %tr
  11. %td.email-inner-card-td
  12. = render 'status', status: @status, time_zone: @me.user_time_zone
  13. %table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
  14. %tr
  15. %td.email-padding-top-24
  16. = render 'application/mailer/button', text: t('application_mailer.view_status'), url: web_url("@#{@status.account.pretty_acct}/#{@status.id}")