mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-04 19:10:56 -04:00
18 lines
392 B
Text
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>
|