<%= inline_svg_tag "diary/entry.svg", :title => t(".title_label") %>
<%= link_to entry.title, diary_entry_path(@user, entry) %>
<%= truncate(strip_tags(entry.body.to_html), :length => 150) %>
<%= inline_svg_tag "diary/comment.svg", :class => "me-1", :title => t(".comments_label") %>
<%= link_to t(".comments", :count => entry.comments.size), diary_entry_path(@user, entry, :anchor => "comments"), :class => "text-body-secondary" %>
<%= inline_svg_tag "diary/date.svg", :class => "me-1", :title => t(".date_label") %>
<%= l(entry.created_at.to_date, :format => :long) %>