html
head
title The Random Rack - Products
link(rel="stylesheet", href="/styles/style.css")
body
include ../partials/header
#main
h1 Products
div.list
each product in products
a(href=product.url) #{product.name}
.pagination
if current > 1
- let url = "/products?page=" + (current - 1);
- if (qstring && qstring.length > 0) { url += "&" + qstring; }
a(href=url) Previous
- url = "/products?page=" + (current + 1);
- if (qstring && qstring.length > 0) { url += "&" + qstring; }
a(href=url) Next
include ../partials/footer