<%- include('../includes/head.ejs') %> <%- include('../includes/navigation.ejs') %>
<% if (products.length > 0) { %>
<% for (let product of products) { %>

<%= product.title %>

<%= product.title %>

$<%= product.price %>

<%= product.description %>

<%- include('../includes/details.ejs', {product}) %> <% if(isAuthenticated) { %> <%- include('../includes/add-to-cart.ejs', {product}) %> <% } %>
<% } %>
<%- include('../includes/pagination.ejs') %> <% } else { %>

No Products to display...

<% } %>
<%- include('../includes/end.ejs') %>