odin-codespace/inventory/src/views/header.ejs
2025-01-16 16:28:53 -05:00

18 lines
392 B
Text

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><%= pageTitle %></title>
<link href="/css/style.css" rel="stylesheet">
</head>
<body>
<nav class="nav">
<ul>
<% links.forEach(link => { %>
<li><a href="<%= link.href %>"><%= link.name %></a></li>
<% }); %>
</ul>
</nav>