al13ntown/app/views/blogs/show.html.erb

43 lines
1.2 KiB
Text
Raw Permalink Normal View History

2026-08-24 20:12:41 +00:00
<section class="blog">
<hr>
<% if current_user %>
<%= link_to "Edit", edit_profile_blog_path %> | <%= link_to "New Post", new_profile_blog_post_path(@profile, @blog) %> <br>
<% end %>
</small>
<% if @blog.title.present? %>
<h2><%= @blog.title %></h2>
<% end %>
<%= @blog.topic %>
<hr style="border: 2px groove purple;">
<% @posts.each do |post| %>
<section class="posts"><%= post.created_at %>
<h2> <%= post.title %> | <%= link_to 'Read', profile_blog_post_path(@profile, @blog, post) %> </h2>
<center><% if post.icon_image.attached? %>
<%= image_tag post.icon_image, width: "100", height: "100" %>
<% else %>
<p>No image available.</p></center>
<% end %><br>
Content:
<%= post.body.to_plain_text.truncate(100) %>
<br>
<% 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 %>
</section>
<br>
<% end %>
</section>