2018-07-28 19:25:33 +02:00
|
|
|
.hero-widget
|
|
|
|
.hero-widget__img
|
2019-03-15 15:05:31 +01: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-28 19:25:33 +02:00
|
|
|
|
|
|
|
.hero-widget__text
|
2018-07-31 18:59:34 +02:00
|
|
|
%p= @instance_presenter.site_short_description.html_safe.presence || @instance_presenter.site_description.html_safe.presence || t('about.generic_description', domain: site_hostname)
|
2019-08-18 14:55:32 +02:00
|
|
|
|
2019-09-03 04:57:07 +02:00
|
|
|
- if Setting.trends && !(user_signed_in? && !current_user.setting_trends)
|
2019-08-18 14:55:32 +02:00
|
|
|
- trends = TrendingTags.get(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).as_json
|