2016-02-28 14:41:01 +01:00
|
|
|
- content_for :header_tags do
|
2016-02-29 19:42:08 +01:00
|
|
|
%link{ rel: 'salmon', href: api_salmon_url(@account.id) }/
|
|
|
|
%link{ rel: 'alternate', type: 'application/atom+xml', href: account_url(@account, format: 'atom') }/
|
2016-02-28 14:41:01 +01:00
|
|
|
|
2016-03-12 20:47:22 +01:00
|
|
|
.card{ style: "background-image: url(#{@account.header.url(:medium)})" }
|
2016-03-05 23:42:40 +01:00
|
|
|
.avatar= image_tag @account.avatar.url(:large)
|
2016-03-06 12:34:39 +01:00
|
|
|
%h1.name
|
|
|
|
= @account.display_name.blank? ? @account.username : @account.display_name
|
|
|
|
%small= "@#{@account.username}"
|
|
|
|
.details
|
|
|
|
.counter
|
|
|
|
%span.counter-label Posts
|
|
|
|
%span.counter-number= @account.statuses.count
|
|
|
|
.counter
|
|
|
|
%span.counter-label Following
|
|
|
|
%span.counter-number= @account.following.count
|
|
|
|
.counter
|
|
|
|
%span.counter-label Followers
|
|
|
|
%span.counter-number= @account.followers.count
|
|
|
|
.bio
|
|
|
|
%p= @account.note
|
2016-02-28 00:51:05 +01:00
|
|
|
.activity-stream
|
2016-03-06 12:34:39 +01:00
|
|
|
- @statuses.each do |status|
|
2016-02-29 19:42:08 +01:00
|
|
|
= render partial: 'stream_entries/status', locals: { status: status, include_threads: false, is_successor: false, is_predecessor: false }
|