2016-10-14 10:03:12 +11:00
|
|
|
- content_for :page_title do
|
2017-04-18 08:16:32 +10:00
|
|
|
= site_hostname
|
2016-10-14 10:03:12 +11:00
|
|
|
|
2016-12-15 10:59:49 +11:00
|
|
|
- content_for :header_tags do
|
2017-07-14 19:08:56 +10:00
|
|
|
%script#initial-state{ type: 'application/json' }!= json_escape(@initial_state_json)
|
|
|
|
= javascript_pack_tag 'about', integrity: true, crossorigin: 'anonymous'
|
2017-09-14 08:04:30 +10:00
|
|
|
= render partial: 'og'
|
2016-12-15 10:59:49 +11:00
|
|
|
|
2017-07-11 23:27:59 +10:00
|
|
|
.landing-page
|
|
|
|
.header-wrapper
|
|
|
|
.mascot-container
|
2017-07-18 23:22:09 +10:00
|
|
|
= image_tag asset_pack_path('elephant-fren.png'), alt: '', role: 'presentation', class: 'mascot'
|
2016-09-28 07:12:33 +10:00
|
|
|
|
2017-07-11 23:27:59 +10:00
|
|
|
.header
|
|
|
|
.container.links
|
|
|
|
.brand
|
|
|
|
= link_to root_url do
|
2017-07-23 10:40:39 +10:00
|
|
|
= image_tag asset_pack_path('logo_full.svg'), alt: 'Mastodon'
|
2016-09-28 07:12:33 +10:00
|
|
|
|
2017-07-11 23:27:59 +10:00
|
|
|
%ul.nav
|
|
|
|
%li
|
|
|
|
- if user_signed_in?
|
|
|
|
= link_to t('settings.back'), root_url, class: 'webapp-btn'
|
|
|
|
- else
|
|
|
|
= link_to t('auth.login'), new_user_session_path, class: 'webapp-btn'
|
|
|
|
%li= link_to t('about.about_this'), about_more_path
|
2017-07-26 10:00:36 +10:00
|
|
|
%li
|
|
|
|
= link_to 'https://joinmastodon.org/' do
|
|
|
|
= "#{t('about.other_instances')}"
|
|
|
|
%i.fa.fa-external-link{ style: 'padding-left: 5px;' }
|
2017-03-22 05:18:37 +11:00
|
|
|
|
2017-07-11 23:27:59 +10:00
|
|
|
.container.hero
|
|
|
|
.floats
|
2017-07-23 00:36:54 +10:00
|
|
|
%div{ role: 'presentation', class: 'float-1' }
|
|
|
|
%div{ role: 'presentation', class: 'float-2' }
|
|
|
|
%div{ role: 'presentation', class: 'float-3' }
|
2017-07-11 23:27:59 +10:00
|
|
|
.heading
|
|
|
|
%h1
|
|
|
|
= @instance_presenter.site_title
|
|
|
|
%small= t 'about.hosted_on', domain: site_hostname
|
|
|
|
- if @instance_presenter.open_registrations
|
|
|
|
= render 'registration'
|
2017-04-04 23:26:57 +10:00
|
|
|
- else
|
2017-07-11 23:27:59 +10:00
|
|
|
.closed-registrations-message
|
|
|
|
%div
|
|
|
|
- if @instance_presenter.closed_registrations_message.blank?
|
|
|
|
%p= t('about.closed_registrations')
|
|
|
|
- else
|
|
|
|
= @instance_presenter.closed_registrations_message.html_safe
|
2017-07-18 23:22:09 +10:00
|
|
|
= link_to t('about.find_another_instance'), 'https://joinmastodon.org/', class: 'button button-alternative button--block'
|
2017-03-22 05:18:37 +11:00
|
|
|
|
2017-08-08 09:50:15 +10:00
|
|
|
.about-short
|
2017-07-11 23:27:59 +10:00
|
|
|
.container
|
|
|
|
%h3= t('about.description_headline', domain: site_hostname)
|
|
|
|
%p= @instance_presenter.site_description.html_safe.presence || t('about.generic_description', domain: site_hostname)
|
2017-03-22 05:18:37 +11:00
|
|
|
|
2017-07-11 23:27:59 +10:00
|
|
|
.features
|
|
|
|
.container
|
|
|
|
- if Setting.timeline_preview
|
|
|
|
#mastodon-timeline{ data: { props: Oj.dump(default_props) } }
|
2016-11-02 02:58:13 +11:00
|
|
|
|
2017-07-11 23:27:59 +10:00
|
|
|
.about-mastodon
|
|
|
|
%h3= t 'about.what_is_mastodon'
|
|
|
|
%p= t 'about.about_mastodon_html'
|
2017-10-08 05:00:35 +11:00
|
|
|
= link_to t('about.learn_more'), 'https://joinmastodon.org/', class: 'button button-secondary'
|
2017-07-11 23:27:59 +10:00
|
|
|
= render 'features'
|
|
|
|
.footer-links
|
|
|
|
.container
|
|
|
|
%p
|
2017-08-23 06:54:19 +10:00
|
|
|
= link_to t('about.source_code'), @instance_presenter.source_url
|
|
|
|
= " (#{@instance_presenter.version_number})"
|