<% if diary_entries.present? %>

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

<% diary_entries.each do |entry| %>

"> <%= link_to entry.title, diary_entry_path(@user, entry) %>

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

"> <%= link_to diary_entry_path(@user, entry, :anchor => "comments"), :class => "text-body-secondary" do %> <%= t(".comments", :count => entry.comments.size) %> <% end %> "> <%= l(entry.created_at.to_date, :format => :long) %>
<% end %>
<% end %>