- Add rake task for generating Apple/Android icons and favicons from SVG - Add rake task for generating PNG icons and logos for e-mails from SVG - Remove obsolete Microsoft icons and configuration - Remove PWA shortcut icons
		
			
				
	
	
		
			17 lines
		
	
	
		
			741 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			741 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
.hero-widget
 | 
						|
  .hero-widget__img
 | 
						|
    = image_tag @instance_presenter.hero&.file&.url || @instance_presenter.thumbnail&.file&.url || asset_pack_path('media/images/preview.png'), alt: @instance_presenter.site_title
 | 
						|
 | 
						|
  .hero-widget__text
 | 
						|
    %p= @instance_presenter.site_short_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).as_json
 |