22 lines
484 B
Plaintext
22 lines
484 B
Plaintext
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<title><%= title %></title>
|
||
|
|
<link
|
||
|
|
href="https://fonts.googleapis.com/css?family=Poppins&display=swap"
|
||
|
|
rel="stylesheet"
|
||
|
|
/>
|
||
|
|
<link rel="stylesheet" href="/styles/main.css" type="text/css" />
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<nav>
|
||
|
|
<ul>
|
||
|
|
<li><a href="/">Home</a></li>
|
||
|
|
<li><a href="/products">Products</a></li>
|
||
|
|
</ul>
|
||
|
|
</nav>
|
||
|
|
<main><%- body%></main>
|
||
|
|
</body>
|
||
|
|
</html>
|