2018-07-29 03:25:33 +10:00
|
|
|
.hero-widget
|
|
|
|
.hero-widget__img
|
2022-10-13 20:29:19 +11:00
|
|
|
= image_tag @instance_presenter.thumbnail&.file&.url(:'@1x') || asset_pack_path('media/images/preview.png'), alt: @instance_presenter.title
|
2018-07-29 03:25:33 +10:00
|
|
|
|
|
|
|
.hero-widget__text
|
2022-10-05 12:47:56 +11:00
|
|
|
%p= @instance_presenter.description.html_safe.presence || t('about.about_mastodon_html')
|
2019-08-18 22:55:32 +10:00
|
|
|
|
2019-09-03 12:57:07 +10:00
|
|
|
- if Setting.trends && !(user_signed_in? && !current_user.setting_trends)
|
2022-02-25 10:34:14 +11:00
|
|
|
- trends = Trends.tags.query.allowed.limit(3)
|
2019-08-18 22:55:32 +10:00
|
|
|
|
|
|
|
- unless trends.empty?
|
|
|
|
.endorsements-widget.trends-widget
|
|
|
|
%h4.emojify= t('footer.trending_now')
|
|
|
|
|
|
|
|
- trends.each do |tag|
|
2022-07-18 16:41:50 +10:00
|
|
|
= react_component :hashtag, hashtag: ActiveModelSerializers::SerializableResource.new(tag, serializer: REST::TagSerializer, scope: current_user, scope_name: :current_user).as_json
|