<% if current_user %>
<%= link_to "Edit", edit_profile_blog_path %> | <%= link_to "New Post", new_profile_blog_post_path(@profile, @blog) %>
<% end %>
<% if @blog.title.present? %>
<%= @blog.title %>
<% end %>
<%= @blog.topic %>
<% @posts.each do |post| %>
<%= post.created_at %>
<%= post.title %> | <%= link_to 'Read', profile_blog_post_path(@profile, @blog, post) %>
<% if post.icon_image.attached? %>
<%= image_tag post.icon_image, width: "100", height: "100" %>
<% else %>
No image available.
<% end %>
Content:
<%= post.body.to_plain_text.truncate(100) %>
<% if current_user %>
<%= link_to 'Edit', edit_profile_blog_post_path(@profile, @blog, post) %>
<%= link_to 'Destroy', profile_blog_post_path(@profile, @blog, post), data: {
turbo_method: :delete,
turbo_confirm: "Are you sure?"
} %>
<% end %>
<% end %>