2016-10-14 01:03:12 +02:00
|
|
|
- content_for :page_title do
|
2017-04-18 00:16:32 +02:00
|
|
|
= site_hostname
|
2016-10-14 01:03:12 +02:00
|
|
|
|
2016-12-15 00:59:49 +01:00
|
|
|
- content_for :header_tags do
|
2018-03-09 00:35:07 +01:00
|
|
|
%link{ rel: 'canonical', href: about_url }/
|
2017-10-11 00:52:25 +02:00
|
|
|
= render partial: 'shared/og'
|
2016-12-15 00:59:49 +01:00
|
|
|
|
2019-03-12 17:34:00 +01:00
|
|
|
.landing
|
|
|
|
.landing__brand
|
|
|
|
= link_to root_url, class: 'brand' do
|
2022-06-09 22:25:23 +02:00
|
|
|
= logo_as_symbol(:wordmark)
|
2019-03-12 17:34:00 +01:00
|
|
|
%span.brand__tagline=t 'about.tagline'
|
|
|
|
|
|
|
|
.landing__grid
|
|
|
|
.landing__grid__column.landing__grid__column-registration
|
|
|
|
.box-widget
|
|
|
|
= render 'registration'
|
|
|
|
|
|
|
|
.directory
|
2022-10-04 20:13:46 +02:00
|
|
|
.directory__tag
|
|
|
|
= link_to web_path do
|
|
|
|
%h4
|
|
|
|
= fa_icon 'globe fw'
|
|
|
|
= t('about.see_whats_happening')
|
|
|
|
%small= t('about.browse_public_posts')
|
2019-03-12 17:34:00 +01:00
|
|
|
|
|
|
|
.directory__tag
|
2019-10-24 22:44:42 +02:00
|
|
|
= link_to 'https://joinmastodon.org/apps', target: '_blank', rel: 'noopener noreferrer' do
|
2019-03-12 17:34:00 +01:00
|
|
|
%h4
|
|
|
|
= fa_icon 'tablet fw'
|
|
|
|
= t('about.get_apps')
|
|
|
|
%small= t('about.apps_platforms')
|
|
|
|
|
|
|
|
.landing__grid__column.landing__grid__column-login
|
|
|
|
.box-widget
|
2022-03-03 16:14:44 +01:00
|
|
|
- if current_user.present?
|
|
|
|
= render 'logged_in'
|
|
|
|
- else
|
|
|
|
= render 'login'
|
2019-03-12 17:34:00 +01:00
|
|
|
|
|
|
|
.hero-widget
|
|
|
|
.hero-widget__img
|
2022-10-05 03:47:56 +02:00
|
|
|
= image_tag @instance_presenter.hero&.file&.url || @instance_presenter.thumbnail&.file&.url || asset_pack_path('media/images/preview.png'), alt: @instance_presenter.title
|
2019-03-12 17:34:00 +01:00
|
|
|
|
2019-10-08 22:08:55 +02:00
|
|
|
.hero-widget__text
|
|
|
|
%p
|
2022-10-05 03:47:56 +02:00
|
|
|
= @instance_presenter.description.html_safe.presence || t('about.about_mastodon_html')
|
2019-10-08 22:08:55 +02:00
|
|
|
= link_to about_more_path do
|
|
|
|
= t('about.learn_more')
|
|
|
|
= fa_icon 'angle-double-right'
|
2019-03-12 17:34:00 +01:00
|
|
|
|
|
|
|
.hero-widget__footer
|
|
|
|
.hero-widget__footer__column
|
|
|
|
%h4= t 'about.administered_by'
|
|
|
|
|
2022-10-05 03:47:56 +02:00
|
|
|
= account_link_to @instance_presenter.contact.account
|
2019-03-12 17:34:00 +01:00
|
|
|
|
|
|
|
.hero-widget__footer__column
|
|
|
|
%h4= t 'about.server_stats'
|
|
|
|
|
2020-04-28 10:16:55 +02:00
|
|
|
.hero-widget__counters__wrapper
|
|
|
|
.hero-widget__counter
|
2021-07-07 21:13:08 +02:00
|
|
|
%strong= friendly_number_to_human @instance_presenter.user_count
|
2019-03-12 17:34:00 +01:00
|
|
|
%span= t 'about.user_count_after', count: @instance_presenter.user_count
|
2020-04-28 10:16:55 +02:00
|
|
|
.hero-widget__counter
|
2021-07-07 21:13:08 +02:00
|
|
|
%strong= friendly_number_to_human @instance_presenter.active_user_count
|
2019-03-12 17:34:00 +01:00
|
|
|
%span
|
|
|
|
= t 'about.active_count_after'
|
|
|
|
%abbr{ title: t('about.active_footnote') } *
|