Skip to content
Snippets Groups Projects
Commit cc1eccc8 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Fix #466 - when logged in, make "get started" link to the frontpage instead of sign up

parent 16f9490d
No related branches found
No related tags found
No related merge requests found
......@@ -245,6 +245,7 @@
margin: 0;
font-family: inherit;
font-size: 13px;
line-height: 18px;
a {
display: block;
......
......@@ -45,7 +45,10 @@
.panel-header= t 'about.links'
.panel-list
%ul
%li= link_to t('about.get_started'), new_user_registration_path
%li= link_to t('auth.login'), new_user_session_path
- if user_signed_in?
%li= link_to t('about.get_started'), root_path
- else
%li= link_to t('about.get_started'), new_user_registration_path
%li= link_to t('auth.login'), new_user_session_path
%li= link_to t('about.terms'), terms_path
%li= link_to t('about.source_code'), 'https://github.com/tootsuite/mastodon'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment