Skip to content

Instantly share code, notes, and snippets.

@sjungling
Last active December 15, 2015 19:59
Show Gist options
  • Save sjungling/5315352 to your computer and use it in GitHub Desktop.
Save sjungling/5315352 to your computer and use it in GitHub Desktop.
Microformats
<div class="hproduct">
<h2 class="fn">
<a href="<%= this.ProductComposite.WishListProduct.Link %>">
<span class="manufacturer"><%= this.ProductComposite.WishListProduct.Manufacturer %></span>
<%= this.ProductComposite.WishListProduct.ProductId %>
</a>
</h2>
<h3 class="description">
<%= this.ProductComposite.WishListProduct.Title %>
</h3>
<div>
Price: <span class="price"><%= this.ProductComposite.WishListProduct.Price %></span>
</div>
<div class="quantity">
Quantity: <%= this.ProductComposite.WishListProduct.Quantity %>
</div>
</div>
<div>
<h2>
<a href="<%= this.ProductComposite.WishListProduct.Link %>">
<%= this.ProductComposite.WishListProduct.Manufacturer %>
<%= this.ProductComposite.WishListProduct.ProductId %>
</a>
</h2>
<h3>
<%= this.ProductComposite.WishListProduct.Title %>
</h3>
<div>
Price: <%= this.ProductComposite.WishListProduct.Price %>
</div>
<div>
Quantity: <%= this.ProductComposite.WishListProduct.Quantity %>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment