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
|
|
|
|
= javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
|
2017-10-11 00:52:25 +02:00
|
|
|
= render partial: 'shared/og'
|
2017-01-13 20:14:21 +01:00
|
|
|
|
2017-07-24 15:09:08 +02:00
|
|
|
.landing-page
|
|
|
|
.header-wrapper.compact
|
|
|
|
.header
|
2018-02-02 10:32:21 +01:00
|
|
|
= render 'links'
|
2017-07-24 15:09:08 +02:00
|
|
|
|
|
|
|
.container.hero
|
2017-08-08 15:49:32 +02: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 15:09:08 +02:00
|
|
|
|
|
|
|
.information-board
|
|
|
|
.container
|
|
|
|
.information-board-sections
|
2017-01-13 20:14:21 +01:00
|
|
|
.section
|
|
|
|
%span= t 'about.user_count_before'
|
2017-04-09 14:47:25 +02:00
|
|
|
%strong= number_with_delimiter @instance_presenter.user_count
|
2017-01-13 20:14:21 +01:00
|
|
|
%span= t 'about.user_count_after'
|
|
|
|
.section
|
|
|
|
%span= t 'about.status_count_before'
|
2017-04-09 14:47:25 +02:00
|
|
|
%strong= number_with_delimiter @instance_presenter.status_count
|
2017-01-13 20:14:21 +01:00
|
|
|
%span= t 'about.status_count_after'
|
|
|
|
.section
|
|
|
|
%span= t 'about.domain_count_before'
|
2017-04-09 14:47:25 +02:00
|
|
|
%strong= number_with_delimiter @instance_presenter.domain_count
|
2017-01-13 20:14:21 +01:00
|
|
|
%span= t 'about.domain_count_after'
|
2017-07-24 15:09:08 +02:00
|
|
|
= render 'contact', contact: @instance_presenter
|
2017-01-13 20:14:21 +01:00
|
|
|
|
2017-07-24 15:09:08 +02:00
|
|
|
.extended-description
|
|
|
|
.container
|
|
|
|
= @instance_presenter.site_extended_description.html_safe.presence || t('about.extended_description_html')
|
2017-01-13 20:14:21 +01:00
|
|
|
|
2017-07-24 15:09:08 +02:00
|
|
|
.footer-links
|
|
|
|
.container
|
|
|
|
%p
|
2017-08-22 22:54:19 +02:00
|
|
|
= link_to t('about.source_code'), @instance_presenter.source_url
|
|
|
|
= " (#{@instance_presenter.version_number})"
|