blob: 758fd35d740ae5e0266df246fc6c6b84f6cc9721 (
plain)
1
2
3
4
5
6
7
8
|
<h1 class="text-xl">Locations</h1>
<ul>
<% @locations.each do |location| %>
<li><span class="font-bold"><%= link_to location.name, location_path(location) %></span>
– <%= location.description %></li>
<% end %>
</ul>
|