2017-01-12 18:24:41 -08:00
|
|
|
- content_for :page_title do
|
2017-04-17 15:16:32 -07:00
|
|
|
= site_hostname
|
2017-01-12 18:24:41 -08:00
|
|
|
|
2017-07-24 06:09:08 -07:00
|
|
|
- content_for :header_tags do
|
|
|
|
= javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
|
2017-10-10 15:52:25 -07:00
|
|
|
= render partial: 'shared/og'
|
2017-01-13 11:14:21 -08:00
|
|
|
|
2017-07-24 06:09:08 -07:00
|
|
|
.landing-page
|
|
|
|
.header-wrapper.compact
|
|
|
|
.header
|
2018-02-02 01:32:21 -08:00
|
|
|
= render 'links'
|
2017-07-24 06:09:08 -07:00
|
|
|
|
2018-02-21 16:03:48 -08:00
|
|
|
.container-alt.hero
|
2017-08-08 06:49:32 -07:00
|
|
|
.heading
|
|
|
|
%h3= t('about.description_headline', domain: site_hostname)
|
|
|
|
%p= @instance_presenter.site_description.html_safe.presence || t('about.generic_description', domain: site_hostname)
|
2017-07-24 06:09:08 -07:00
|
|
|
|
|
|
|
.information-board
|
2018-02-21 16:03:48 -08:00
|
|
|
.container-alt
|
|
|
|
.information-board__sections
|
|
|
|
.information-board__section
|
2017-01-13 11:14:21 -08:00
|
|
|
%span= t 'about.user_count_before'
|
2017-04-09 05:47:25 -07:00
|
|
|
%strong= number_with_delimiter @instance_presenter.user_count
|
2017-01-13 11:14:21 -08:00
|
|
|
%span= t 'about.user_count_after'
|
2018-02-21 16:03:48 -08:00
|
|
|
.information-board__section
|
2017-01-13 11:14:21 -08:00
|
|
|
%span= t 'about.status_count_before'
|
2017-04-09 05:47:25 -07:00
|
|
|
%strong= number_with_delimiter @instance_presenter.status_count
|
2017-01-13 11:14:21 -08:00
|
|
|
%span= t 'about.status_count_after'
|
2018-02-21 16:03:48 -08:00
|
|
|
.information-board__section
|
2017-01-13 11:14:21 -08:00
|
|
|
%span= t 'about.domain_count_before'
|
2017-04-09 05:47:25 -07:00
|
|
|
%strong= number_with_delimiter @instance_presenter.domain_count
|
2017-01-13 11:14:21 -08:00
|
|
|
%span= t 'about.domain_count_after'
|
2017-07-24 06:09:08 -07:00
|
|
|
= render 'contact', contact: @instance_presenter
|
2017-01-13 11:14:21 -08:00
|
|
|
|
2017-07-24 06:09:08 -07:00
|
|
|
.extended-description
|
2018-02-21 16:03:48 -08:00
|
|
|
.container-alt
|
2017-07-24 06:09:08 -07:00
|
|
|
= @instance_presenter.site_extended_description.html_safe.presence || t('about.extended_description_html')
|
2017-01-13 11:14:21 -08:00
|
|
|
|
2017-07-24 06:09:08 -07:00
|
|
|
.footer-links
|
2018-02-21 16:03:48 -08:00
|
|
|
.container-alt
|
2017-07-24 06:09:08 -07:00
|
|
|
%p
|
2017-08-22 13:54:19 -07:00
|
|
|
= link_to t('about.source_code'), @instance_presenter.source_url
|
|
|
|
= " (#{@instance_presenter.version_number})"
|