<% 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| %>

<%= link_to trip.name, trip, class: 'hover:underline' %>

<%= "#{human_date(trip.started_at)} – #{human_date(trip.ended_at)}, #{trip.distance} #{DISTANCE_UNIT}" %>

<% end %>
<% end %>