express-inventory-application/views/index.ejs

28 lines
854 B
Text

<!DOCTYPE html>
<html>
<head>
<title>Good Pickin's</title>
<link rel="stylesheet" href="/styles/css/bootstrap.min.css" />
</head>
<body class="bg-dark text-light min-vh-100">
<div class="d-flex flex-column py-4 px-4 align-items-center">
<h1 class="mb-0">Welcome to Good Pickin's General Store!</h1>
<p class="mb-0">(formerly Chuck's)</p>
<p>est. 2023</p>
<div class="pb-4"></div>
<% categories.forEach(category => {%>
<a
href="/<%= category.simpleName %>"
type="button"
class="btn btn-outline-light px-4"
>
<%= category.name %> (<%= category.items.length %>)
</a>
<div class="pb-4"></div>
<% }) %>
<a href="/createcategory" type="button" class="btn btn-success px-4">
+ Create new category
</a>
</div>
</body>
</html>