<% title 'Listing Notes' %>

<%= notice %>

<% @notes.each do |note| %> <% end %>
Text Trail Guidepost
<%= note.text %> <%= note.trail_id %> <%= note.guidepost_id %> <%= link_to 'Show', note %> <%= link_to 'Edit', edit_note_path(note) %> <%= link_to 'Destroy', note, method: :delete, data: { confirm: 'Are you sure?' } %>

<%= link_to 'New Note', new_note_path %>