about summary refs log tree commit diff
path: root/app/views/profile/show.html.haml
blob: c84cb7e81785466dc7b5542fe9477764fad1ea73 (plain) (blame)
1
2
3
4
5
6
7
8
%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 }