A full-Stack online store.
***** NOVERIA *****
To see this app live: http://noveria.mycode.website/
This project is one online store where users can review items and and purchase them. the technologies used on this Web-Applications are:
- Node.js
- Express,js
- MongoDB
--- Edmundo Rubio ---
Portfolio: www.mycode.website Resume: www.edmundorubio.site
<% for (var i = 0; i < products.length; i++) { %>
<div class="col-md-4">
<a href="/product/<%= products[i]._id %>">
<div class="thumbnail">
<img src="<%= products[i].image %>">
<div class="caption">
<h3><%= products[i].name %></h3>
<p><%= products[i].category.name %></h3>
<p>$<%= products[i].price %></p>
</div>
</div>
</a>
</div>
<% } %>
