Last active
August 29, 2015 14:04
-
-
Save gabriel-dehan/5ca1ec84fa4d26c1eeef to your computer and use it in GitHub Desktop.
Wtf
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="product-share" class="row"> | |
<div class="col-md-4"> | |
<ul> | |
<li>Twitter</li> | |
<li>Pinterest</li> | |
<li>G+</li> | |
<li>Facebook</li> | |
</ul> | |
</div> | |
</div> | |
<div id="product-main-content" class="row"> | |
<div id="product-pictures" class="col-md-8"> | |
<h2><%= @product.name %></h2> | |
<ul> | |
<% @product.pictures.each do |picture| %> | |
<li><%= image_tag picture.attachment_url, class: 'big' %></li> | |
<% end %> | |
</ul> | |
<ul> | |
<% @product.pictures.each do |picture| %> | |
<li><%= image_tag picture.attachment_url, class: 'thumb' %></li> | |
<% end %> | |
</ul> | |
</div> | |
<div id="product-summary" class="col-md-4 well"> | |
<div class="user-info"> | |
<p>AVATAR</p> | |
<%= @product.user.full_name %> | |
<% unless true %> | |
<%= link_to 'Ask a question', new_conversation_path(@product.user) %> | |
<% end %> | |
</div> | |
<div class="product-infos"> | |
<%= @product.name %><br> | |
<%= @product.price %> euros | |
</div> | |
<% if user_signed_in? %> | |
<div class="user-tools"> | |
<div class="favorite"> | |
<%= toggle_favorite if current_user %> | |
</div> | |
</div> | |
<% end %> | |
<hr> | |
<div class="mini-cart"> | |
<%= render partial: 'carts/minicart' %> | |
</div> <!-- Mini cart --> | |
<hr> | |
<div class="wishlist-link"> | |
<%= toggle_wish if current_user %> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment