Skip to content

Instantly share code, notes, and snippets.

@muZk
Last active December 30, 2015 10:39
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 muZk/7817043 to your computer and use it in GitHub Desktop.
Save muZk/7817043 to your computer and use it in GitHub Desktop.
<section class="cafes-lista">
<h1 class="cafes-titulo-principal centrar">Nuestros Cafés</h1>
<% @products.each do |product| %>
<article class="cafe">
<div class="cafe-vista-previa pull-left">
<%= image_tag product.image, alt: product.name %>
</div>
<div class="cafe-contenido pull-left">
<header class="cafe-encabezado">
<h2 class="cafe-titulo pull-left">
<%= product.name %>
</h2>
<span class="cafe-precio pull-left">
<%= product.price %>
</span>
<div class="clear"></div>
</header>
<div class="cafe-descripcion">
<%= product.description %>
</div>
</div>
<%= link_to "Comprar", "#lo_que_sea", class: "cafe-comprar pull-left" %>
<hr class="clear">
</article>
<% end %>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment