2018-07-29 03:25:33 +10:00
|
|
|
.hero-widget
|
|
|
|
.hero-widget__img
|
2019-03-16 01:05:31 +11:00
|
|
|
= image_tag @instance_presenter.hero&.file&.url || @instance_presenter.thumbnail&.file&.url || asset_pack_path('media/images/preview.jpg'), alt: @instance_presenter.site_title
|
2018-07-29 03:25:33 +10:00
|
|
|
|
|
|
|
.hero-widget__text
|
2019-10-09 07:08:55 +11:00
|
|
|
%p= @instance_presenter.site_short_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|
|
|
|
|
= react_component :hashtag, hashtag: ActiveModelSerializers::SerializableResource.new(tag, serializer: REST::TagSerializer).as_json
|