<% content_for :title, 'Trips' %>

Trips

<%= link_to 'New trip', new_trip_path, class: 'btn btn-primary' %>
<% if @trips.empty? %>

Hello there!

Here you'll find your trips, but now there are none. Let's <%= link_to 'create one', new_trip_path, class: 'link' %>!

<% else %>
<%= paginate @trips %>
<% @trips.each do |trip| %> <%= render 'trip', trip: trip %> <% end %>
<% end %>