Skip to content

Commit

Permalink
misc on header
Browse files Browse the repository at this point in the history
  • Loading branch information
nbogie committed Jan 27, 2024
1 parent 63a4927 commit 5cf1551
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions views/partials/header.ejs
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Sakura.css is a nice-looking defaults stylesheet for simple html pages -->
<!-- <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css" /> -->
<link rel="stylesheet" href="https://unpkg.com/mvp.css" />

<!-- Sakura.css is a nice-looking stylesheet for simple html pages -->
<!-- <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css" /> -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/alvaromontoro/almond.css@latest/dist/almond.min.css" /> -->
<link rel="stylesheet" href="https://unpkg.com/mvp.css" />
<!-- and/or link to your own css -->
<link href="/style.css" rel="stylesheet" />

<!-- and/or link to your own css -->
<link href="/style.css" rel="stylesheet" />
<link rel="icon" href="favicon.png" type="image/x-icon" />

<link rel="icon" href="favicon.png" type="image/x-icon" />
<title><%= title %></title>
</head>

<title>Header</title>
</head>

<body>
<header>
<nav>
<ul>
<li><a href="/one">one</a></li>
<li><a href="/two">two</a></li>
<li><a href="/three">three</a></li>
<li><a href="/four">four (sessions)</a></li>
<li><a href="/products.json">products(json)</a></li>
<li><a href="/products">products (html)</a></li>
<li><a href="/formDemo">formDemo</a></li>
</ul>
</nav>
</header>
<h1><%= title %></h1>
<body>
<header>
<nav>
<ul>
<li><a href="/one">one</a></li>
<li><a href="/two">two</a></li>
<li><a href="/three">three</a></li>
<li><a href="/four">four (sessions)</a></li>
<li><a href="/products.json">products(json)</a></li>
<li><a href="/products">products (html)</a></li>
<li><a href="/formDemo">formDemo</a></li>
</ul>
</nav>
</header>
<h1><%= title %></h1>
</body>
</html>

0 comments on commit 5cf1551

Please sign in to comment.