diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-01-16 19:47:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-16 19:47:46 +0100 |
commit | bc642ac24b49c14dca382e7aabbc16130293d2f4 (patch) | |
tree | 1bf55901185d1cac954ef216f7394d09c10df1f3 /app/views | |
parent | 4ab42287c0bbcbd259bff229d66da8964a261aff (diff) |
Redesign public hashtag page to use a masonry layout (#9822)
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/tags/show.html.haml | 30 |
1 files changed, 1 insertions, 29 deletions
diff --git a/app/views/tags/show.html.haml b/app/views/tags/show.html.haml index f6e452f18..229fe958b 100644 --- a/app/views/tags/show.html.haml +++ b/app/views/tags/show.html.haml @@ -8,33 +8,5 @@ = javascript_pack_tag 'about', integrity: true, crossorigin: 'anonymous' = render 'og' -.landing-page.tag-page.alternative - .features - .container - .grid - .column-1 - #mastodon-timeline{ data: { props: Oj.dump(default_props.merge(hashtag: @tag.name)) } } - - .column-2 - .about-mastodon - .about-hashtag.landing-page__information - .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 - - .cta - - if user_signed_in? - = link_to t('settings.back'), root_path, class: 'button button-secondary' - - else - = link_to t('auth.login'), new_user_session_path, class: 'button button-secondary' - = link_to t('about.learn_more'), about_path, class: 'button button-alternative' - - .landing-page__features.landing-page__information - %h3= t 'about.what_is_mastodon' - %p= t 'about.about_mastodon_html' - - = render 'features' - +#mastodon-timeline{ data: { props: Oj.dump(default_props.merge(hashtag: @tag.name)) } } #modal-container |