<%= t ".title_label" %>
<%= link_to entry.title, diary_entry_path(@user, entry), :class => "align-self-center lh-sm" %>
<%= truncate(strip_tags(entry.body.to_html), :length => 150) %>
<%= t ".comments_label" %>
<%= link_to t(".comments", :count => entry.comments.size), diary_entry_path(@user, entry, :anchor => "comments"), :class => "text-body-secondary" %>
<%= t ".date_label" %>
<%= l(entry.created_at.to_date, :format => :long) %>