diff options
author | Lynx Kotoura <admin@sanin.link> | 2017-10-14 21:48:12 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-10-14 14:48:12 +0200 |
commit | b3b4b5a2eb21e5be6d844f35d03cf5f8b87091ae (patch) | |
tree | a9374f73e8cf7cef0b0d5ed2da81af5231e30ee7 /app/views | |
parent | 8125fdc19f310a22fdd1395365c2f02d6887b389 (diff) |
Adjust public hashtag pages (#5357)
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/tags/show.html.haml | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/app/views/tags/show.html.haml b/app/views/tags/show.html.haml index 6266d3c0c..ea8b0faa3 100644 --- a/app/views/tags/show.html.haml +++ b/app/views/tags/show.html.haml @@ -7,31 +7,43 @@ = render 'og' .landing-page.tag-page - .stripe .features .container #mastodon-timeline{ data: { props: Oj.dump(default_props.merge(hashtag: @tag.name)) } } .about-mastodon - .brand - = link_to root_url do - = image_tag asset_pack_path('logo_full.svg'), alt: 'Mastodon' + .about-hashtag + .brand + = link_to root_url do + = image_tag asset_pack_path('logo_full.svg'), alt: 'Mastodon' - %p= t 'about.about_hashtag_html', hashtag: @tag.name + %p= t 'about.about_hashtag_html', hashtag: @tag.name - .cta - = link_to t('auth.login'), new_user_session_path, class: 'button button-secondary' - = link_to t('about.learn_more'), root_url, class: 'button button-alternative' + .cta + = link_to t('auth.login'), new_user_session_path, class: 'button button-secondary' + = link_to t('about.learn_more'), root_url, class: 'button button-alternative' .features-list .features-list__row .text + %h6= t 'about.features.real_conversation_title' + = t 'about.features.real_conversation_body' + .visual + = fa_icon 'fw comments' + .features-list__row + .text %h6= t 'about.features.not_a_product_title' = t 'about.features.not_a_product_body' .visual = fa_icon 'fw users' .features-list__row .text + %h6= t 'about.features.within_reach_title' + = t 'about.features.within_reach_body' + .visual + = fa_icon 'fw mobile' + .features-list__row + .text %h6= t 'about.features.humane_approach_title' = t 'about.features.humane_approach_body' .visual |