mastodon/app/views/tags/show.html.haml

11 lines
402 B
Plaintext

- if @statuses.empty?
.accounts-grid
= render partial: 'accounts/nothing_here'
- else
.activity-stream
= render partial: 'stream_entries/status', collection: @statuses, as: :status, cached: true
.pagination
- if @statuses.size == 20
= link_to safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), tag_url(@tag, max_id: @statuses.last.id), class: 'next_page', rel: 'next'