Skip to content

Instantly share code, notes, and snippets.

@keeperofthenecklace
Created July 23, 2015 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keeperofthenecklace/8b11dc995cf39cdbc504 to your computer and use it in GitHub Desktop.
Save keeperofthenecklace/8b11dc995cf39cdbc504 to your computer and use it in GitHub Desktop.
Displays all products.
<h4><%= @product[0].quote.category.name.titleize if @product.present? %> Products</h4>
<% if @product.present? %>
<%= render partial: '/products/listings', locals: { product: @product } %>
<% else %>
<p>The are no agape love quotes</p>
<%= render partial: '/products/no_product' %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment