about summary refs log tree commit diff
path: root/app/views/accounts/following.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/accounts/following.html.haml')
-rw-r--r--app/views/accounts/following.html.haml15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/views/accounts/following.html.haml b/app/views/accounts/following.html.haml
new file mode 100644
index 000000000..6e1ba583c
--- /dev/null
+++ b/app/views/accounts/following.html.haml
@@ -0,0 +1,15 @@
+- content_for :page_title do
+  People whom
+  = display_name(@account)
+  follows
+
+= render partial: 'header'
+
+.accounts-grid
+  - @following.each do |f|
+    = render partial: 'grid_card', locals: { account: f }
+
+  - if @following.empty?
+    = render partial: 'nothing_here'
+
+= will_paginate @following, pagination_options