|
<% @popular_topics.each_with_index do |t, i| %>
<%= category_badge(t.category, inline_style: true, absolute_url: true) %>
|
<%= short_date(t.created_at) %>
|
|
<% if t.user %>
<% if SiteSetting.enable_names? && t.user.name.present? && t.user.name.downcase != t.user.username.downcase %>
<%= t.user.name -%>
<% end %>
<%= t.user.username -%>
<% end %>
|
<%- if show_image_with_url(t.image_url) && t.featured_link.nil? && !(@excerpts[t.first_post&.id]||"").include?(t.image_url) -%>
|
<%- end -%>
<%- if t.first_post.present? && !t.first_post.user_deleted %>
<%= @excerpts[t.first_post.id] %>
|
<%- end %>
<% if i < 5 %>
<%= digest_custom_html("below_post_#{i+1}") %>
<% end %>
<% end %>
|
|
|
<% if @popular_posts.present? %>
|
<% @popular_posts.each do |post| %>
<%= email_excerpt(post.cooked, post) %>
|
<% end %>
|
|
<% end %>
<%= digest_custom_html("above_popular_topics") %>
<% if @other_new_for_you.present? %>
<% end %>
<%= digest_custom_html("below_popular_topics") %>
<%= digest_custom_html("above_footer") %>
<%= digest_custom_html("below_footer") %>