about summary refs log tree commit diff
path: root/app/views/application/_sidebar.html.haml
blob: 6d18668b08f26250ab2a5e58587157765c9be7a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.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.html_safe.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