mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 00:43:15 +00:00
13 lines
612 B
Plaintext
13 lines
612 B
Plaintext
%div.entry{ class: status.reblog? ? 'entry-reblog' : 'entry-status' }
|
|
- if status.reblog?
|
|
.pre-header
|
|
%i.fa.fa-retweet
|
|
Shared by
|
|
= link_to status.account.display_name.blank? ? status.account.username : status.account.display_name, (status.account.local? ? profile_url(name: status.account.username) : status.account.url), class: 'name'
|
|
.header
|
|
= render partial: 'status_header', locals: { status: status.reblog? ? status.reblog : status }
|
|
.content
|
|
= status.content
|
|
.counters
|
|
= render partial: 'status_footer', locals: { status: status.reblog? ? status.reblog : status }
|