This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
|
%div.card
|
|
%h1.name
|
|
= @account.display_name.blank? ? @account.username : @account.display_name
|
|
%small= "@#{@account.username}"
|
|
|
|
%div.activity-stream
|
|
- @account.statuses.order('id desc').each do |status|
|
|
= render partial: 'status', locals: { status: status }
|