diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-03-06 16:25:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-06 16:25:35 +0100 |
commit | 21db91a0a8fbe5b4fd69eecd2aeb4a84823343a0 (patch) | |
tree | fbed71a2d5a2d2fbf34a9379be0ec36bac067ebd /app | |
parent | 86f8aa2db2bf4f19f482b5857c4e49b8791eb514 (diff) |
Remove sidebar dead code (#23984)
Diffstat (limited to 'app')
-rw-r--r-- | app/views/application/_sidebar.html.haml | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/app/views/application/_sidebar.html.haml b/app/views/application/_sidebar.html.haml deleted file mode 100644 index 9d0efa7e1..000000000 --- a/app/views/application/_sidebar.html.haml +++ /dev/null @@ -1,16 +0,0 @@ -.hero-widget - .hero-widget__img - = image_tag @instance_presenter.thumbnail&.file&.url(:'@1x') || asset_pack_path('media/images/preview.png'), alt: @instance_presenter.title - - .hero-widget__text - %p= @instance_presenter.description.presence || t('about.about_mastodon_html') - -- if Setting.trends && !(user_signed_in? && !current_user.setting_trends) - - trends = Trends.tags.query.allowed.limit(3) - - - unless trends.empty? - .endorsements-widget.trends-widget - %h4.emojify= t('footer.trending_now') - - - trends.each do |tag| - = react_component :hashtag, hashtag: ActiveModelSerializers::SerializableResource.new(tag, serializer: REST::TagSerializer, scope: current_user, scope_name: :current_user).as_json |