docbrown/app/views/articles/_widget_list_item.html.erb
2022-01-20 06:25:10 +01:00

12 lines
445 B
Text

<a class="crayons-link crayons-link--contentful" href="<%= plucked_article[0] %>">
<%= plucked_article[1] %>
<% if show_comment_count %>
<div class="crayons-link__secondary">
<% if plucked_article[2] > 0 %>
<%= t("views.comments.count", count: plucked_article[2]) %>
<% else %>
<span class="c-indicator c-indicator--warning"><%= t("views.comments.empty") %></span>
<% end %>
</div>
<% end %>
</a>