2016-10-13 16:03:12 -07:00
|
|
|
- content_for :page_title do
|
2017-04-17 15:16:32 -07:00
|
|
|
= site_hostname
|
2016-10-13 16:03:12 -07:00
|
|
|
|
2016-12-14 15:59:49 -08:00
|
|
|
- content_for :header_tags do
|
2017-07-14 02:08:56 -07:00
|
|
|
%script#initial-state{ type: 'application/json' }!= json_escape(@initial_state_json)
|
|
|
|
= javascript_pack_tag 'about', integrity: true, crossorigin: 'anonymous'
|
|
|
|
|
2017-04-08 03:15:40 -07:00
|
|
|
%meta{ property: 'og:site_name', content: site_title }/
|
2017-04-22 08:29:46 -07:00
|
|
|
%meta{ property: 'og:url', content: about_url }/
|
2016-12-14 15:59:49 -08:00
|
|
|
%meta{ property: 'og:type', content: 'website' }/
|
2017-04-17 15:16:32 -07:00
|
|
|
%meta{ property: 'og:title', content: site_hostname }/
|
2017-07-11 06:27:59 -07:00
|
|
|
%meta{ property: 'og:description', content: strip_tags(@instance_presenter.site_description.presence || t('about.about_mastodon_html')) }/
|
2017-06-16 13:38:26 -07:00
|
|
|
%meta{ property: 'og:image', content: asset_pack_path('mastodon_small.jpg', protocol: :request) }/
|
2016-12-14 16:07:58 -08:00
|
|
|
%meta{ property: 'og:image:width', content: '400' }/
|
|
|
|
%meta{ property: 'og:image:height', content: '400' }/
|
2017-01-05 14:47:40 -08:00
|
|
|
%meta{ property: 'twitter:card', content: 'summary' }/
|
2016-12-14 15:59:49 -08:00
|
|
|
|
2017-07-11 06:27:59 -07:00
|
|
|
.landing-page
|
|
|
|
.header-wrapper
|
|
|
|
.mascot-container
|
2017-07-18 06:22:09 -07:00
|
|
|
= image_tag asset_pack_path('elephant-fren.png'), alt: '', role: 'presentation', class: 'mascot'
|
2016-09-27 14:12:33 -07:00
|
|
|
|
2017-07-11 06:27:59 -07:00
|
|
|
.header
|
|
|
|
.container.links
|
|
|
|
.brand
|
|
|
|
= link_to root_url do
|
2017-07-22 17:40:39 -07:00
|
|
|
= image_tag asset_pack_path('logo_full.svg'), alt: 'Mastodon'
|
2016-09-27 14:12:33 -07:00
|
|
|
|
2017-07-11 06:27:59 -07: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 17:00:36 -07:00
|
|
|
%li
|
|
|
|
= link_to 'https://joinmastodon.org/' do
|
|
|
|
= "#{t('about.other_instances')}"
|
|
|
|
%i.fa.fa-external-link{ style: 'padding-left: 5px;' }
|
2017-03-21 11:18:37 -07:00
|
|
|
|
2017-07-11 06:27:59 -07:00
|
|
|
.container.hero
|
|
|
|
.floats
|
2017-07-22 07:36:54 -07:00
|
|
|
%div{ role: 'presentation', class: 'float-1' }
|
|
|
|
%div{ role: 'presentation', class: 'float-2' }
|
|
|
|
%div{ role: 'presentation', class: 'float-3' }
|
2017-07-11 06:27:59 -07: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 06:26:57 -07:00
|
|
|
- else
|
2017-07-11 06:27:59 -07: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 06:22:09 -07:00
|
|
|
= link_to t('about.find_another_instance'), 'https://joinmastodon.org/', class: 'button button-alternative button--block'
|
2017-03-21 11:18:37 -07:00
|
|
|
|
2017-08-07 16:50:15 -07:00
|
|
|
.about-short
|
2017-07-11 06:27:59 -07: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 11:18:37 -07:00
|
|
|
|
2017-07-11 06:27:59 -07:00
|
|
|
.features
|
|
|
|
.container
|
|
|
|
- if Setting.timeline_preview
|
|
|
|
#mastodon-timeline{ data: { props: Oj.dump(default_props) } }
|
2016-11-01 08:58:13 -07:00
|
|
|
|
2017-07-11 06:27:59 -07:00
|
|
|
.about-mastodon
|
|
|
|
%h3= t 'about.what_is_mastodon'
|
|
|
|
%p= t 'about.about_mastodon_html'
|
2017-07-18 06:22:09 -07:00
|
|
|
%a.button.button-secondary{ href: 'https://joinmastodon.org/' }= t 'about.learn_more'
|
2017-07-11 06:27:59 -07:00
|
|
|
= render 'features'
|
|
|
|
.footer-links
|
|
|
|
.container
|
|
|
|
%p
|
|
|
|
= link_to t('about.source_code'), 'https://github.com/tootsuite/mastodon'
|
2017-08-07 16:50:15 -07:00
|
|
|
= " (#{@instance_presenter.version_number})"
|