From 9b195f5dd34ad646e1300abaaa42e10cf43cd5db Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 14 Oct 2016 01:03:12 +0200 Subject: Add window titles to auth pages and about page, link sign up/login from about page --- app/views/about/index.html.haml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'app/views/about/index.html.haml') 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' -- cgit