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
%meta{ property: 'og:site_name', content: 'Mastodon' }/
%meta{ property: 'og:type', content: 'website' }/
%meta{ property: 'og:title', content: Rails.configuration.x.local_domain }/
%meta{ property: 'og:description', content: "Mastodon is a free, open-source social network server. A decentralized alternative to commercial platforms, it avoids the risks of a single company monopolizing your communication. Anyone can run Mastodon and participate in the social network seamlessly" }/
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
%p= t('about.about_instance', instance: Rails.configuration.x.local_domain).html_safe
2016-09-27 14:12:33 -07:00
2016-11-01 08:58:13 -07:00
.screenshot= image_tag 'screenshot.png'
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
= link_to t('about.source_code'), 'https://github.com/Gargron/mastodon'
2016-11-01 08:58:13 -07:00
2016-12-20 15:13:13 -08:00
= link_to t('about.get_started'), new_user_registration_path, class: 'button webapp-btn'
= link_to t('auth.login'), new_user_session_path, class: 'button webapp-btn'