Created
January 3, 2013 16:46
-
-
Save aalvesjr/4444807 to your computer and use it in GitHub Desktop.
Listando de dois em dois produtos a cada <li>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="produtosDestaque"> | |
| <ul> | |
| <% @produtos.each_slice(2) do |two_products| %> | |
| <li> | |
| <% two_products.each do |product| %> | |
| <div class="sliderProdutoDestaque"> | |
| <div class="guardaImagem"></div> | |
| <div class="nomeProduto"> | |
| <p><a href="javascript:void(0);">Nome do <br/> produto </a></p> | |
| </div> | |
| <div class="saibaMais"> | |
| <%= link_to image_tag("bt-saibia-mais.gif", :alt => "Saiba Mais"), "javascript:void(0);" %> | |
| </div> | |
| </div> | |
| <% end %> | |
| </li> | |
| <% end %> | |
| </ul> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment