From a698b767c175e7ca59122da11412660a22519067 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 5 Nov 2016 17:44:14 +0100 Subject: Fix linking of remote hashtags in UI, add public view of hashtags --- app/views/tags/show.html.haml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'app/views/tags/show.html.haml') diff --git a/app/views/tags/show.html.haml b/app/views/tags/show.html.haml index e69de29bb..0e6fd2db7 100644 --- a/app/views/tags/show.html.haml +++ b/app/views/tags/show.html.haml @@ -0,0 +1,8 @@ +- if @statuses.empty? + .accounts-grid + = render partial: 'accounts/nothing_here' +- else + .activity-stream + = render partial: 'stream_entries/status', collection: @statuses, as: :status, cached: true + += will_paginate @statuses, pagination_options -- cgit