2018-12-06 08:36:11 -08:00
|
|
|
- content_for :page_title do
|
2018-12-07 07:37:32 -08:00
|
|
|
= t('directories.explore_mastodon', title: site_title)
|
2018-12-06 08:36:11 -08:00
|
|
|
|
|
|
|
- content_for :header_tags do
|
|
|
|
%meta{ name: 'description', content: t('directories.explanation') }
|
|
|
|
|
2018-12-07 07:37:32 -08:00
|
|
|
= opengraph 'og:site_name', t('about.hosted_on', domain: site_hostname)
|
|
|
|
= opengraph 'og:type', 'website'
|
2018-12-06 08:36:11 -08:00
|
|
|
= opengraph 'og:title', t('directories.explore_mastodon', title: site_title)
|
|
|
|
= opengraph 'og:description', t('directories.explanation')
|
2018-12-07 07:37:32 -08:00
|
|
|
= opengraph 'og:image', File.join(root_url, 'android-chrome-192x192.png')
|
2018-12-06 08:36:11 -08:00
|
|
|
|
|
|
|
.page-header
|
|
|
|
%h1= t('directories.explore_mastodon', title: site_title)
|
|
|
|
%p= t('directories.explanation')
|
|
|
|
|
2019-08-29 15:14:36 -07:00
|
|
|
- if @accounts.empty?
|
|
|
|
= nothing_here
|
|
|
|
- else
|
|
|
|
.card-grid
|
|
|
|
= render partial: 'application/card', collection: @accounts, as: :account
|
2018-12-06 08:36:11 -08:00
|
|
|
|
2019-08-29 15:14:36 -07:00
|
|
|
= paginate @accounts
|