This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
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-02-28 00:51:05 +01:00
|
|
|
.card
|
2016-03-05 23:42:40 +01:00
|
|
|
.avatar= image_tag @account.avatar.url(:large)
|
2016-02-28 00:51:05 +01:00
|
|
|
.bio
|
|
|
|
%h1.name
|
|
|
|
= @account.display_name.blank? ? @account.username : @account.display_name
|
|
|
|
%small= "@#{@account.username}"
|
2016-02-26 20:48:20 +01:00
|
|
|
|
2016-02-28 00:51:05 +01:00
|
|
|
.activity-stream
|
2016-02-26 20:48:20 +01:00
|
|
|
- @account.statuses.order('id desc').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 }
|