This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-07-28 10:25:33 -07:00
|
|
|
.hero-widget
|
|
|
|
.hero-widget__img
|
2019-03-15 07:05:31 -07: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 10:25:33 -07:00
|
|
|
|
|
|
|
.hero-widget__text
|
2019-10-08 13:08:55 -07:00
|
|
|
%p= @instance_presenter.site_short_description.html_safe.presence || t('about.about_mastodon_html')
|
2019-08-18 05:55:32 -07:00
|
|
|
|
2019-09-02 19:57:07 -07:00
|
|
|
- if Setting.trends && !(user_signed_in? && !current_user.setting_trends)
|
2019-08-18 05:55:32 -07: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
|