<%= params[:category] %>

<% if @destinations.count == 0 %>

Ups! There are no Trip Advices in this category yet.

<% if redactor_signed_in? %>

<%= link_to "Add New Advice", new_destination_path %> to change this!

<% else %>

<%= link_to "Log In", new_destination_path %> or <%= link_to "Sign Up", new_redactor_registration_path %> to add the new one!

<% end %> <% else %>
<% @destinations.each do |destination| %>
<%= image_tag destination.destination_img.url(:destination_index), class: "destination-index" %>

<%= link_to destination.name, destination_path(destination), class: "destination-index" %>

<% end %>
<% end %>