about summary refs log tree commit diff
path: root/app/views/accounts/_header.html.haml
blob: 371bc62c30ded2cb59c030048d2cb5744f17fd6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.card{ style: "background-image: url(#{@account.header.url(:medium)})" }
  .avatar= image_tag @account.avatar.url(:large)
  %h1.name
    = display_name(@account)
    %small= "@#{@account.username}"
  .details
    .bio
      %p= @account.note

    .details-counters
      .counter{ class: active_nav_class(account_url(@account)) }
        = link_to account_url(@account) do
          %span.counter-label Posts
          %span.counter-number= @account.statuses.count
      .counter{ class: active_nav_class(following_account_url(@account)) }
        = link_to following_account_url(@account) do
          %span.counter-label Following
          %span.counter-number= @account.following.count
      .counter{ class: active_nav_class(followers_account_url(@account)) }
        = link_to followers_account_url(@account) do
          %span.counter-label Followers
          %span.counter-number= @account.followers.count