docbrown/app/views/articles/_widget_list_item.html.erb
2019-02-28 17:23:06 -05:00

14 lines
492 B
Text

<div class="widget-link-list__item">
<a href="<%= plucked_article[0] %>">
<%= plucked_article[1] %>
</a>
<% if show_comment_count %>
<div class="discuss-list-comment-count">
<% if plucked_article[2] > 0 %>
<img src="<%= asset_path("comments-bubble.svg") %>" alt="Comments" /> <%= plucked_article[2] %>
<% else %>
<span class="discuss-list-comment-count discuss-list-comment-count-brand-new">fresh</span>
<% end %>
</div>
<% end %>
</div>