<% if diary_entries.present? %>

<%= t(".latest_diaries") %>

<% diary_entries.each do |entry| %>

<%= inline_svg_tag "icons/journal-text.svg", :size => "32px", :title => t(".title_label"), :class => "flex-shrink-0" %> <%= link_to entry.title, diary_entry_path(@user, entry), :class => "align-self-center lh-sm" %>

<%= truncate(strip_tags(entry.body.to_html), :length => 150) %>

<%= inline_svg_tag entry.comments.empty? ? "icons/chat.svg" : "icons/chat-fill.svg", :size => "20px", :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 "icons/calendar.svg", :size => "20px", :title => t(".date_label") %> <%= l(entry.created_at.to_date, :format => :long) %>
<% end %>
<% end %>