2017-01-13 03:24:41 +01:00
|
|
|
- content_for :page_title do
|
2017-04-18 00:16:32 +02:00
|
|
|
= site_hostname
|
2017-01-13 03:24:41 +01:00
|
|
|
|
2017-07-24 15:09:08 +02:00
|
|
|
- content_for :header_tags do
|
2020-11-06 11:56:31 +01:00
|
|
|
= javascript_pack_tag 'public', crossorigin: 'anonymous'
|
2017-10-11 00:52:25 +02:00
|
|
|
= render partial: 'shared/og'
|
2017-01-13 20:14:21 +01:00
|
|
|
|
2019-09-19 11:09:05 +02:00
|
|
|
.grid-4
|
2018-08-09 12:58:20 +02:00
|
|
|
.column-0
|
|
|
|
.public-account-header.public-account-header--no-bar
|
|
|
|
.public-account-header__image
|
2019-03-15 15:05:31 +01:00
|
|
|
= image_tag @instance_presenter.hero&.file&.url || @instance_presenter.thumbnail&.file&.url || asset_pack_path('media/images/preview.jpg'), alt: @instance_presenter.site_title, class: 'parallax'
|
2017-07-24 15:09:08 +02:00
|
|
|
|
2018-08-09 12:58:20 +02:00
|
|
|
.column-1
|
|
|
|
.landing-page__call-to-action{ dir: 'ltr' }
|
|
|
|
.row
|
|
|
|
.row__information-board
|
|
|
|
.information-board__section
|
|
|
|
%span= t 'about.user_count_before'
|
2020-12-14 05:09:14 +01:00
|
|
|
%strong= number_to_human @instance_presenter.user_count, strip_insignificant_zeros: true
|
2018-08-22 19:42:47 +02:00
|
|
|
%span= t 'about.user_count_after', count: @instance_presenter.user_count
|
2018-08-09 12:58:20 +02:00
|
|
|
.information-board__section
|
|
|
|
%span= t 'about.status_count_before'
|
2020-12-14 05:09:14 +01:00
|
|
|
%strong= number_to_human @instance_presenter.status_count, strip_insignificant_zeros: true
|
2018-08-22 19:42:47 +02:00
|
|
|
%span= t 'about.status_count_after', count: @instance_presenter.status_count
|
2018-08-09 12:58:20 +02:00
|
|
|
.row__mascot
|
|
|
|
.landing-page__mascot
|
2019-03-15 15:05:31 +01:00
|
|
|
= image_tag @instance_presenter.mascot&.file&.url || asset_pack_path('media/images/elephant_ui_plane.svg'), alt: ''
|
2017-07-24 15:09:08 +02:00
|
|
|
|
2018-08-09 12:58:20 +02:00
|
|
|
.column-2
|
2019-09-19 11:09:05 +02:00
|
|
|
.contact-widget
|
|
|
|
%h4= t 'about.administered_by'
|
2017-01-13 20:14:21 +01:00
|
|
|
|
2018-08-09 12:58:20 +02:00
|
|
|
= account_link_to(@instance_presenter.contact_account)
|
2017-01-13 20:14:21 +01:00
|
|
|
|
2018-08-09 12:58:20 +02:00
|
|
|
- if @instance_presenter.site_contact_email.present?
|
2019-09-19 11:09:05 +02:00
|
|
|
%h4
|
|
|
|
= succeed ':' do
|
|
|
|
= t 'about.contact'
|
|
|
|
|
|
|
|
= mail_to @instance_presenter.site_contact_email, nil, title: @instance_presenter.site_contact_email
|
2018-08-09 12:58:20 +02:00
|
|
|
|
|
|
|
.column-3
|
2019-07-19 01:44:42 +02:00
|
|
|
= render 'application/flashes'
|
|
|
|
|
2019-09-19 11:09:05 +02:00
|
|
|
- if @contents.blank? && (!display_blocks? || @blocks&.empty?)
|
|
|
|
= nothing_here
|
|
|
|
- else
|
|
|
|
.box-widget
|
|
|
|
.rich-formatting
|
|
|
|
= @contents.html_safe
|
|
|
|
|
|
|
|
- if display_blocks? && !@blocks.empty?
|
|
|
|
%h2#unavailable-content= t('about.unavailable_content')
|
|
|
|
|
|
|
|
%p= t('about.unavailable_content_html')
|
|
|
|
|
2019-09-29 16:23:01 +02:00
|
|
|
- if (blocks = @blocks.select(&:reject_media?)) && !blocks.empty?
|
2020-06-09 10:28:02 +02:00
|
|
|
%h3= t('about.unavailable_content_description.rejecting_media_title')
|
2019-09-29 16:23:01 +02:00
|
|
|
%p= t('about.unavailable_content_description.rejecting_media')
|
|
|
|
= render partial: 'domain_blocks', locals: { domain_blocks: blocks }
|
|
|
|
- if (blocks = @blocks.select(&:silence?)) && !blocks.empty?
|
2020-06-09 10:28:02 +02:00
|
|
|
%h3= t('about.unavailable_content_description.silenced_title')
|
2019-09-29 16:23:01 +02:00
|
|
|
%p= t('about.unavailable_content_description.silenced')
|
|
|
|
= render partial: 'domain_blocks', locals: { domain_blocks: blocks }
|
|
|
|
- if (blocks = @blocks.select(&:suspend?)) && !blocks.empty?
|
2020-06-09 10:28:02 +02:00
|
|
|
%h3= t('about.unavailable_content_description.suspended_title')
|
2019-09-29 16:23:01 +02:00
|
|
|
%p= t('about.unavailable_content_description.suspended')
|
|
|
|
= render partial: 'domain_blocks', locals: { domain_blocks: blocks }
|
2019-09-19 11:09:05 +02:00
|
|
|
|
|
|
|
.column-4
|
|
|
|
%ul.table-of-contents
|
|
|
|
- @table_of_contents.each do |item|
|
|
|
|
%li
|
|
|
|
= link_to item.title, "##{item.anchor}"
|
|
|
|
|
|
|
|
- unless item.children.empty?
|
|
|
|
%ul
|
|
|
|
- item.children.each do |sub_item|
|
|
|
|
%li= link_to sub_item.title, "##{sub_item.anchor}"
|
|
|
|
|
|
|
|
- if display_blocks? && !@blocks.empty?
|
|
|
|
%li= link_to t('about.unavailable_content'), '#unavailable-content'
|