2017-01-09 13:43:53 -05:00
|
|
|
- content_for :header_tags do
|
2017-05-02 20:04:16 -04:00
|
|
|
= javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
|
2017-01-09 13:43:53 -05:00
|
|
|
|
2016-10-13 19:03:12 -04:00
|
|
|
- content_for :page_title do
|
2017-04-17 18:16:32 -04:00
|
|
|
= site_hostname
|
2016-10-13 19:03:12 -04:00
|
|
|
|
2016-12-14 18:59:49 -05:00
|
|
|
- content_for :header_tags do
|
2017-04-08 06:15:40 -04:00
|
|
|
%meta{ property: 'og:site_name', content: site_title }/
|
2017-04-22 11:29:46 -04:00
|
|
|
%meta{ property: 'og:url', content: about_url }/
|
2016-12-14 18:59:49 -05:00
|
|
|
%meta{ property: 'og:type', content: 'website' }/
|
2017-04-17 18:16:32 -04:00
|
|
|
%meta{ property: 'og:title', content: site_hostname }/
|
2017-04-17 17:19:45 -04:00
|
|
|
%meta{ property: 'og:description', content: strip_tags(@instance_presenter.site_description.presence || t('about.about_mastodon')) }/
|
2017-05-02 20:04:16 -04:00
|
|
|
%meta{ property: 'og:image', content: asset_pack_path('mastodon_small.jpg') }/
|
2016-12-14 19:07:58 -05:00
|
|
|
%meta{ property: 'og:image:width', content: '400' }/
|
|
|
|
%meta{ property: 'og:image:height', content: '400' }/
|
2017-01-05 17:47:40 -05:00
|
|
|
%meta{ property: 'twitter:card', content: 'summary' }/
|
2016-12-14 18:59:49 -05:00
|
|
|
|
2016-09-27 17:12:33 -04:00
|
|
|
.wrapper
|
|
|
|
%h1
|
2017-05-02 20:04:16 -04:00
|
|
|
= image_tag asset_pack_path('logo.png')
|
2017-04-15 07:28:09 -04:00
|
|
|
= Setting.site_title
|
2016-09-27 17:12:33 -04:00
|
|
|
|
2017-05-07 21:35:25 -04:00
|
|
|
%p!= t('about.about_mastodon')
|
2016-09-27 17:12:33 -04:00
|
|
|
|
2017-03-21 14:18:37 -04:00
|
|
|
.screenshot-with-signup
|
2017-05-02 20:04:16 -04:00
|
|
|
.mascot= image_tag asset_pack_path('fluffy-elephant-friend.png')
|
2017-03-21 14:18:37 -04:00
|
|
|
|
2017-04-09 08:47:25 -04:00
|
|
|
- if @instance_presenter.open_registrations
|
|
|
|
= render 'registration'
|
2017-04-04 09:26:57 -04:00
|
|
|
- else
|
|
|
|
.closed-registrations-message
|
2017-04-09 08:47:25 -04:00
|
|
|
- if @instance_presenter.closed_registrations_message.blank?
|
2017-04-04 09:26:57 -04:00
|
|
|
%p= t('about.closed_registrations')
|
|
|
|
- else
|
2017-05-07 21:35:25 -04:00
|
|
|
!= @instance_presenter.closed_registrations_message
|
2017-04-04 09:26:57 -04:00
|
|
|
.info
|
|
|
|
= link_to t('auth.login'), new_user_session_path, class: 'webapp-btn'
|
|
|
|
·
|
2017-04-11 15:57:05 -04:00
|
|
|
= link_to t('about.other_instances'), 'https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/List-of-Mastodon-instances.md'
|
2017-04-04 09:26:57 -04:00
|
|
|
·
|
|
|
|
= link_to t('about.about_this'), about_more_path
|
2017-03-21 14:18:37 -04: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 11:58:13 -04:00
|
|
|
|
2017-04-09 08:47:25 -04:00
|
|
|
- unless @instance_presenter.site_description.blank?
|
2017-04-17 18:16:32 -04:00
|
|
|
%h3= t('about.description_headline', domain: site_hostname)
|
2017-05-07 21:35:25 -04:00
|
|
|
%p!= @instance_presenter.site_description
|
2017-01-12 14:46:24 -05:00
|
|
|
|
2016-09-27 17:12:33 -04:00
|
|
|
.actions
|
2016-11-01 11:58:13 -04:00
|
|
|
.info
|
2016-11-15 17:56:03 -05:00
|
|
|
= link_to t('about.terms'), terms_path
|
2017-03-17 15:49:34 -04:00
|
|
|
·
|
2017-04-11 15:57:05 -04:00
|
|
|
= link_to t('about.apps'), 'https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/Apps.md'
|
2017-03-17 15:49:34 -04:00
|
|
|
·
|
2017-01-10 21:24:14 -05:00
|
|
|
= link_to t('about.source_code'), 'https://github.com/tootsuite/mastodon'
|
2017-03-17 15:49:34 -04:00
|
|
|
·
|
2017-04-11 15:57:05 -04:00
|
|
|
= link_to t('about.other_instances'), 'https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/List-of-Mastodon-instances.md'
|