32 lines
991 B
Text
32 lines
991 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Good Pickin's - <%= category.name %></title>
|
|
<link rel="stylesheet" href="/styles/css/bootstrap.min.css" />
|
|
</head>
|
|
<body class="bg-dark text-light">
|
|
<div class="d-flex flex-column py-4 px-4 align-items-center">
|
|
<h1 class="mb-0"><%= category.name %></h1>
|
|
<p class="mb-0"><%= category.description %></p>
|
|
<div class="pb-4"></div>
|
|
<% items.forEach(item => { %>
|
|
<a
|
|
href="/<%= category.simpleName %>/<%= item._id %>"
|
|
type="button"
|
|
class="btn btn-outline-light px-4"
|
|
>
|
|
<%= item.name %> (<%= item.quantity %>)
|
|
</a>
|
|
<div class="pb-4"></div>
|
|
<% }) %>
|
|
<div class="pb-4"></div>
|
|
</div>
|
|
<footer
|
|
class="position-fixed bottom-0 border-light border-top w-100 py-2 d-flex justify-content-center bg-dark"
|
|
>
|
|
<a href="/" type="button" class="btn btn-outline-light px-4 py-1">
|
|
Back to Home
|
|
</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|