blob: 3c9b837cda6bab4648dcf429ef1097fcf19385dc (
plain)
1
2
3
4
5
6
7
8
|
<h1 class="text-3xl mb-4">Locations</h1>
<% @locations.each do |location| %>
<div class="my-4">
<h2 class="text-xl"><%= link_to location.name, location_path(location) %></h2>
<p class="italic"><%= location.description %></p>
</div>
<% end %>
|