2018-12-06 16:36:11 +00:00
|
|
|
- content_for :page_title do
|
2018-12-07 15:37:32 +00:00
|
|
|
= t('directories.explore_mastodon', title: site_title)
|
2018-12-06 16:36:11 +00:00
|
|
|
|
|
|
|
- content_for :header_tags do
|
|
|
|
%meta{ name: 'description', content: t('directories.explanation') }
|
|
|
|
|
2018-12-07 15:37:32 +00:00
|
|
|
= opengraph 'og:site_name', t('about.hosted_on', domain: site_hostname)
|
|
|
|
= opengraph 'og:type', 'website'
|
2018-12-06 16:36:11 +00:00
|
|
|
= opengraph 'og:title', t('directories.explore_mastodon', title: site_title)
|
|
|
|
= opengraph 'og:description', t('directories.explanation')
|
2018-12-07 15:37:32 +00:00
|
|
|
= opengraph 'og:image', File.join(root_url, 'android-chrome-192x192.png')
|
2018-12-06 16:36:11 +00:00
|
|
|
|
|
|
|
.page-header
|
|
|
|
%h1= t('directories.explore_mastodon', title: site_title)
|
|
|
|
%p= t('directories.explanation')
|
|
|
|
|
|
|
|
.grid
|
|
|
|
.column-0
|
|
|
|
- if @accounts.empty?
|
|
|
|
= nothing_here
|
|
|
|
- else
|
|
|
|
.directory
|
|
|
|
%table.accounts-table
|
|
|
|
%tbody
|
|
|
|
- @accounts.each do |account|
|
|
|
|
%tr
|
|
|
|
%td= account_link_to account
|
2018-12-17 02:14:28 +00:00
|
|
|
%td.accounts-table__count.optional
|
2018-12-06 16:36:11 +00:00
|
|
|
= number_to_human account.statuses_count, strip_insignificant_zeros: true
|
2018-12-07 15:37:32 +00:00
|
|
|
%small= t('accounts.posts', count: account.statuses_count).downcase
|
2018-12-18 11:02:54 +00:00
|
|
|
%td.accounts-table__count.optional
|
2018-12-28 17:39:24 +00:00
|
|
|
= hide_followers_count?(account) ? '-' : (number_to_human account.followers_count, strip_insignificant_zeros: true)
|
2018-12-18 11:02:54 +00:00
|
|
|
%small= t('accounts.followers', count: account.followers_count).downcase
|
2018-12-06 16:36:11 +00:00
|
|
|
%td.accounts-table__count
|
|
|
|
- if account.last_status_at.present?
|
|
|
|
%time.time-ago{ datetime: account.last_status_at.iso8601, title: l(account.last_status_at) }= l account.last_status_at
|
|
|
|
- else
|
|
|
|
\-
|
|
|
|
%small= t('accounts.last_active')
|
|
|
|
|
|
|
|
= paginate @accounts
|
|
|
|
|
|
|
|
.column-1
|
2019-01-18 09:25:44 +00:00
|
|
|
- if user_signed_in?
|
|
|
|
.box-widget.notice-widget
|
|
|
|
- if current_account.discoverable?
|
|
|
|
- if current_account.followers_count < Account::MIN_FOLLOWERS_DISCOVERY
|
|
|
|
%p= t('directories.enabled_but_waiting', min_followers: Account::MIN_FOLLOWERS_DISCOVERY)
|
|
|
|
- else
|
|
|
|
%p= t('directories.enabled')
|
|
|
|
- else
|
|
|
|
%p= t('directories.how_to_enable')
|
|
|
|
|
|
|
|
= link_to settings_profile_path do
|
|
|
|
= t('settings.edit_profile')
|
|
|
|
= fa_icon 'chevron-right fw'
|
|
|
|
|
|
|
|
- if @tags.empty? && !user_signed_in?
|
|
|
|
.nothing-here
|
2018-12-06 16:36:11 +00:00
|
|
|
- else
|
|
|
|
- @tags.each do |tag|
|
|
|
|
.directory__tag{ class: tag.id == @tag&.id ? 'active' : nil }
|
|
|
|
= link_to explore_hashtag_path(tag) do
|
|
|
|
%h4
|
|
|
|
= fa_icon 'hashtag'
|
|
|
|
= tag.name
|
|
|
|
%small= t('directories.people', count: tag.accounts_count)
|
|
|
|
|
|
|
|
.avatar-stack
|
2018-12-08 00:32:26 +00:00
|
|
|
- tag.cached_sample_accounts.each do |account|
|
2018-12-06 16:36:11 +00:00
|
|
|
= image_tag current_account&.user&.setting_auto_play_gif ? account.avatar_original_url : account.avatar_static_url, width: 48, height: 48, alt: '', class: 'account__avatar'
|