Skip to content

Instantly share code, notes, and snippets.

@lolmaus
Created August 19, 2011 07:44
Show Gist options
  • Save lolmaus/1156276 to your computer and use it in GitHub Desktop.
Save lolmaus/1156276 to your computer and use it in GitHub Desktop.
<% if notice %>
<p id="notice"><%= notice %></p>
<% end #notice %>
<h1>Your Pragmatic Catalog</h1>
<% @products.each do |product| %>
<div class="entry">
<%= image_tag(product.image_url) %>
<h3><%= product.title %></h3>
<%= sanitize(product.description) %>
<div class="price_line">
<span class="price"><%= product.price %></span>
</div> <!-- price_line -->
</div> <!-- entry -->
<% end #@products.each %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment