<%= @post.content %>
<%= @post.created_at %>
<% if Like.find_by(user_id:@current_user.id,post_id:@post.id) %>
いいね!済み
<% else %>
いいね!していません
<% end %>
<% if @post.user_id == @current_user.id %>
<div class="post-menus">
<%= link_to("編集", "/posts/#{@post.id}/edit") %>
<%= link_to("削除", "/posts/#{@post.id}/destroy", {method: "post"}) %>
</div>
<% end %>
</div>