<% if notice.present? %>

<%= notice %>

<% end %> <% content_for :title, "Places" %>

Places

<%= link_to "New place", new_place_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
<% @places.each do |place| %> <%= render place %>

<%= link_to "Show this place", place, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>

<% end %>