<% content_for :title, "Posts" %>
<% if notice.present? %>

<%= notice %>

<% end %>

Posts

<%= link_to "New post", new_post_path, class: "rounded-md px-3.5 py-2.5 bg-blue-600 hover:bg-blue-500 text-white block font-medium" %>
<% if @posts.any? %> <% @posts.each do |post| %>
<%= render post %>
<%= link_to "Show", post, class: "btn btn-primary" %> <%= link_to "Edit", edit_post_path(post), class: "btn btn-secondary" %> <%= button_to "Destroy", post, method: :delete, class: "btn btn-accent", data: { turbo_confirm: "Are you sure?" } %>
<% end %> <% else %>

No posts found.

<% end %>