2017-01-09 10:43:53 -08:00
|
|
|
- content_for :header_tags do
|
|
|
|
= javascript_include_tag 'application_public'
|
|
|
|
|
2016-10-13 16:03:12 -07:00
|
|
|
- content_for :page_title do
|
|
|
|
= Rails.configuration.x.local_domain
|
|
|
|
|
2016-12-14 15:59:49 -08:00
|
|
|
- content_for :header_tags do
|
2017-04-08 03:15:40 -07:00
|
|
|
%meta{ property: 'og:site_name', content: site_title }/
|
2016-12-14 15:59:49 -08:00
|
|
|
%meta{ property: 'og:type', content: 'website' }/
|
|
|
|
%meta{ property: 'og:title', content: Rails.configuration.x.local_domain }/
|
2017-04-09 05:47:25 -07:00
|
|
|
%meta{ property: 'og:description', content: strip_tags(@instance_presenter.site_description.blank? ? t('about.about_mastodon') : @instance_presenter.site_description) }/
|
2016-12-14 16:07:58 -08:00
|
|
|
%meta{ property: 'og:image', content: asset_url('mastodon_small.jpg') }/
|
|
|
|
%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
|
|
|
|
2016-09-27 14:12:33 -07:00
|
|
|
.wrapper
|
|
|
|
%h1
|
|
|
|
= image_tag 'logo.png'
|
|
|
|
Mastodon
|
|
|
|
|
2016-11-15 14:56:03 -08:00
|
|
|
%p= t('about.about_mastodon').html_safe
|
2016-09-27 14:12:33 -07:00
|
|
|
|
2017-03-21 11:18:37 -07:00
|
|
|
.screenshot-with-signup
|
|
|
|
.mascot= image_tag 'fluffy-elephant-friend.png'
|
|
|
|
|
2017-04-09 05:47:25 -07:00
|
|
|
- if @instance_presenter.open_registrations
|
|
|
|
= render 'registration'
|
2017-04-04 06:26:57 -07:00
|
|
|
- else
|
|
|
|
.closed-registrations-message
|
2017-04-09 05:47:25 -07:00
|
|
|
- if @instance_presenter.closed_registrations_message.blank?
|
2017-04-04 06:26:57 -07:00
|
|
|
%p= t('about.closed_registrations')
|
|
|
|
- else
|
2017-04-09 05:47:25 -07:00
|
|
|
= @instance_presenter.closed_registrations_message.html_safe
|
2017-04-04 06:26:57 -07:00
|
|
|
.info
|
|
|
|
= link_to t('auth.login'), new_user_session_path, class: 'webapp-btn'
|
|
|
|
·
|
2017-04-11 12:57:05 -07:00
|
|
|
= link_to t('about.other_instances'), 'https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/List-of-Mastodon-instances.md'
|
2017-04-04 06:26:57 -07:00
|
|
|
·
|
|
|
|
= link_to t('about.about_this'), about_more_path
|
2017-03-21 11:18:37 -07:00
|
|
|
|
|
|
|
%h3= t('about.features_headline')
|
|
|
|
|
|
|
|
.features-list
|
|
|
|
.features-list__column
|
|
|
|
%ul.fa-ul
|
|
|
|
%li
|
|
|
|
= fa_icon('li check-square')
|
|
|
|
= t 'about.features.chronology'
|
|
|
|
%li
|
|
|
|
= fa_icon('li check-square')
|
|
|
|
= t 'about.features.public'
|
|
|
|
%li
|
|
|
|
= fa_icon('li check-square')
|
|
|
|
= t 'about.features.characters'
|
|
|
|
%li
|
|
|
|
= fa_icon('li check-square')
|
|
|
|
= t 'about.features.gifv'
|
|
|
|
.features-list__column
|
|
|
|
%ul.fa-ul
|
|
|
|
%li
|
|
|
|
= fa_icon('li check-square')
|
|
|
|
= t 'about.features.privacy'
|
|
|
|
%li
|
|
|
|
= fa_icon('li check-square')
|
|
|
|
= t 'about.features.blocks'
|
|
|
|
%li
|
|
|
|
= fa_icon('li check-square')
|
|
|
|
= t 'about.features.ethics'
|
|
|
|
%li
|
|
|
|
= fa_icon('li check-square')
|
|
|
|
= t 'about.features.api'
|
2016-11-01 08:58:13 -07:00
|
|
|
|
2017-04-09 05:47:25 -07:00
|
|
|
- unless @instance_presenter.site_description.blank?
|
2017-03-21 11:18:37 -07:00
|
|
|
%h3= t('about.description_headline', domain: Rails.configuration.x.local_domain)
|
2017-04-09 05:47:25 -07:00
|
|
|
%p= @instance_presenter.site_description.html_safe
|
2017-01-12 11:46:24 -08:00
|
|
|
|
2016-09-27 14:12:33 -07:00
|
|
|
.actions
|
2016-11-01 08:58:13 -07:00
|
|
|
.info
|
2016-11-15 14:56:03 -08:00
|
|
|
= link_to t('about.terms'), terms_path
|
2017-03-17 12:49:34 -07:00
|
|
|
·
|
2017-04-11 12:57:05 -07:00
|
|
|
= link_to t('about.apps'), 'https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/Apps.md'
|
2017-03-17 12:49:34 -07:00
|
|
|
·
|
2017-01-10 18:24:14 -08:00
|
|
|
= link_to t('about.source_code'), 'https://github.com/tootsuite/mastodon'
|
2017-03-17 12:49:34 -07:00
|
|
|
·
|
2017-04-11 12:57:05 -07:00
|
|
|
= link_to t('about.other_instances'), 'https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/List-of-Mastodon-instances.md'
|