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
|
2017-07-14 11:08:56 +02:00
|
|
|
%script#initial-state{ type: 'application/json' }!= json_escape(@initial_state_json)
|
|
|
|
= javascript_pack_tag 'about', integrity: true, crossorigin: 'anonymous'
|
2017-10-11 00:52:25 +02:00
|
|
|
= render partial: 'shared/og'
|
2016-12-15 00:59:49 +01:00
|
|
|
|
2017-07-11 15:27:59 +02:00
|
|
|
.landing-page
|
|
|
|
.header-wrapper
|
|
|
|
.mascot-container
|
2017-07-18 15:22:09 +02:00
|
|
|
= image_tag asset_pack_path('elephant-fren.png'), alt: '', role: 'presentation', class: 'mascot'
|
2016-09-27 23:12:33 +02:00
|
|
|
|
2017-07-11 15:27:59 +02:00
|
|
|
.header
|
|
|
|
.container.links
|
|
|
|
.brand
|
|
|
|
= link_to root_url do
|
2017-07-23 02:40:39 +02:00
|
|
|
= image_tag asset_pack_path('logo_full.svg'), alt: 'Mastodon'
|
2016-09-27 23:12:33 +02:00
|
|
|
|
2017-07-11 15:27:59 +02: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-25 23:30:13 +02:00
|
|
|
%li
|
|
|
|
= link_to 'https://joinmastodon.org/' do
|
|
|
|
= "#{t('about.other_instances')}"
|
|
|
|
%i.fa.fa-external-link{ style: 'padding-left: 5px;' }
|
2017-03-21 19:18:37 +01:00
|
|
|
|
2017-07-11 15:27:59 +02:00
|
|
|
.container.hero
|
|
|
|
.floats
|
2017-07-22 16:36:54 +02:00
|
|
|
%div{ role: 'presentation', class: 'float-1' }
|
|
|
|
%div{ role: 'presentation', class: 'float-2' }
|
|
|
|
%div{ role: 'presentation', class: 'float-3' }
|
2017-07-11 15:27:59 +02: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 15:26:57 +02:00
|
|
|
- else
|
2017-07-11 15:27:59 +02: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-09-29 16:41:18 +02:00
|
|
|
|
|
|
|
= simple_form_for(:user, html: { style: 'margin-left: -20px' }, url: session_path(:user)) do |f|
|
|
|
|
= f.input :email, autofocus: true, placeholder: t('simple_form.labels.defaults.email'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.email') }
|
|
|
|
= f.input :password, placeholder: t('simple_form.labels.defaults.password'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.password'), :autocomplete => 'off' }
|
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :button, t('auth.login'), type: :submit
|
2017-07-18 15:22:09 +02:00
|
|
|
= link_to t('about.find_another_instance'), 'https://joinmastodon.org/', class: 'button button-alternative button--block'
|
2017-03-21 19:18:37 +01:00
|
|
|
|
2017-08-08 01:50:15 +02:00
|
|
|
.about-short
|
2017-07-11 15:27:59 +02: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-21 19:18:37 +01:00
|
|
|
|
2017-07-11 15:27:59 +02:00
|
|
|
.features
|
|
|
|
.container
|
|
|
|
- if Setting.timeline_preview
|
|
|
|
#mastodon-timeline{ data: { props: Oj.dump(default_props) } }
|
2016-11-01 16:58:13 +01:00
|
|
|
|
2017-07-11 15:27:59 +02:00
|
|
|
.about-mastodon
|
|
|
|
%h3= t 'about.what_is_mastodon'
|
|
|
|
%p= t 'about.about_mastodon_html'
|
2017-10-07 20:00:35 +02:00
|
|
|
= link_to t('about.learn_more'), 'https://joinmastodon.org/', class: 'button button-secondary'
|
2017-07-11 15:27:59 +02:00
|
|
|
= render 'features'
|
|
|
|
.footer-links
|
|
|
|
.container
|
|
|
|
%p
|
2017-08-22 22:54:19 +02:00
|
|
|
= link_to t('about.source_code'), @instance_presenter.source_url
|
2017-07-25 21:54:12 +02:00
|
|
|
- if @instance_presenter.commit_hash == ""
|
|
|
|
%strong= " (#{@instance_presenter.version_number})"
|
|
|
|
- else
|
|
|
|
%strong= " (#{@instance_presenter.version_number}, "
|
|
|
|
%strong= " #{@instance_presenter.commit_hash})"
|