<% @taxon.products.each do |product| %>
<%= link_to product_path(product), title: product.name, class: 'thumbnail' do %>
<%= image_tag product.gallery_items.first.image.url(:medium) unless product.gallery_items.blank? %>
<%= product.name %>
<% if user_signed_in? && current_user.enabled %>
<% if product.price_conditions.blank? %>
<%= number_to_currency product.price %>
<% else %>
<%= t('site.products.from') %>
<%= number_to_currency product.price %>
<% end %>
<% end %>
<%= raw strip_tags(product.description) %>
<% end %>
<% end %>