Soc/app/views/blog_posts/_blog_post.html.erb

9 lines
333 B
Plaintext
Raw Normal View History

2023-10-05 18:46:09 +00:00
<div id="blog_post_<%= blog_post.id %>" class="blog_post">
<h2><%= blog_post.title %></h2>
<%= blog_post.content %>
<div class="created_at">
<%= link_to "Edit", edit_blog_post_path(blog_post) if blog_post.user == current_user %>
<%= link_to blog_post.created_at.strftime("%Y-%m-%d %H:%M"), blog_post %>
</div>
</div>