about summary refs log tree commit diff
path: root/app/views/profile/_status.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/profile/_status.html.haml')
-rw-r--r--app/views/profile/_status.html.haml23
1 files changed, 0 insertions, 23 deletions
diff --git a/app/views/profile/_status.html.haml b/app/views/profile/_status.html.haml
deleted file mode 100644
index b089036b1..000000000
--- a/app/views/profile/_status.html.haml
+++ /dev/null
@@ -1,23 +0,0 @@
-- if status.reply? && include_threads
-  = render partial: 'status', locals: { status: status.thread, include_threads: false, is_predecessor: true, is_successor: false }
-
-.entry{ class: entry_classes(status, is_predecessor, is_successor, include_threads) }
-  - if status.reblog?
-    .pre-header
-      %i.fa.fa-retweet
-      Shared by
-      = link_to display_name(status.account), profile_url(status.account), class: 'name'
-  .entry__container
-    .avatar
-      = image_tag avatar_for_status_url(status)
-    .entry__container__container
-      .header
-        = render partial: 'status_header', locals: { status: status.reblog? ? status.reblog : status }
-      .content
-        = status.content.html_safe
-      .counters
-        = render partial: 'status_footer', locals: { status: status.reblog? ? status.reblog : status }
-
-- if include_threads
-  - status.replies.each do |status|
-    = render partial: 'status', locals: { status: status, include_threads: false, is_successor: true, is_predecessor: false }