From 3b8908c11470f63d846c631f26cf45f9a4b28663 Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Sat, 15 Apr 2017 07:33:25 -0400 Subject: About page contact email (#1839) * Correct site_contact_email typo * Separate about more page into partials, add specs --- app/views/about/more.html.haml | 28 ++-------------------------- 1 file changed, 2 insertions(+), 26 deletions(-) (limited to 'app/views/about/more.html.haml') diff --git a/app/views/about/more.html.haml b/app/views/about/more.html.haml index 8c12f57c1..418c98247 100644 --- a/app/views/about/more.html.haml +++ b/app/views/about/more.html.haml @@ -28,29 +28,5 @@ .panel= @instance_presenter.site_extended_description.html_safe .sidebar - .panel - .panel-header= t 'about.contact' - .panel-body - - if @instance_presenter.contact_account - .owner - .avatar= image_tag @instance_presenter.contact_account.avatar.url - .name - = link_to TagManager.instance.url_for(@instance_presenter.contact_account) do - %span.display_name.emojify= display_name(@instance_presenter.contact_account) - %span.username= "@#{@instance_presenter.contact_account.acct}" - - - unless @instance_presenter.contact_email.blank? - .contact-email - = t 'about.business_email' - %strong= @instance_presenter.contact_email - .panel - .panel-header= t 'about.links' - .panel-list - %ul - - 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' + = render partial: 'contact', object: @instance_presenter + = render 'links' -- cgit