diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-14 01:03:12 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-14 01:03:12 +0200 |
commit | 9b195f5dd34ad646e1300abaaa42e10cf43cd5db (patch) | |
tree | c937a1b1a1df8766203d947856eddac301ce4c3e /app/views/about/index.html.haml | |
parent | 33f7e1cf996b9f87784cb1218885d9acbc718944 (diff) |
Add window titles to auth pages and about page, link sign up/login from about page
Diffstat (limited to 'app/views/about/index.html.haml')
-rw-r--r-- | app/views/about/index.html.haml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/views/about/index.html.haml b/app/views/about/index.html.haml index 8e014760e..831e7f854 100644 --- a/app/views/about/index.html.haml +++ b/app/views/about/index.html.haml @@ -1,3 +1,6 @@ +- content_for :page_title do + = Rails.configuration.x.local_domain + .wrapper %h1 = image_tag 'logo.png' @@ -16,4 +19,5 @@ is a Mastodon instance. .actions - = link_to 'Get started', new_user_session_path, class: 'button' + = link_to 'Get started', new_user_registration_path, class: 'button' + = link_to 'Log in', new_user_session_path, class: 'button' |