The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
525 B

  1. - content_for :page_title do
  2. = "##{@tag.name}"
  3. .compact-header
  4. %h1<
  5. = link_to site_title, root_path
  6. %small ##{@tag.name}
  7. - if @statuses.empty?
  8. .accounts-grid
  9. = render partial: 'accounts/nothing_here'
  10. - else
  11. .activity-stream.h-feed
  12. = render partial: 'stream_entries/status', collection: @statuses, as: :status
  13. - if @statuses.size == 20
  14. .pagination
  15. = link_to safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), tag_url(@tag, max_id: @statuses.last.id), class: 'next', rel: 'next'