diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-11-15 21:43:36 -0600 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-11-15 21:43:36 -0600 |
commit | 63668ca89f055b2233a8aa6caf4213853918d68d (patch) | |
tree | 0d9bf673daaadba36b70a3b7651a1c46c074e938 /src/templates/misc.html | |
parent | 104d9fd314d6f8650c8e032164c7db00c869eea7 (diff) |
Switch to handlebars for templating
Diffstat (limited to 'src/templates/misc.html')
-rw-r--r-- | src/templates/misc.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/templates/misc.html b/src/templates/misc.html new file mode 100644 index 0000000..9fb376a --- /dev/null +++ b/src/templates/misc.html @@ -0,0 +1,30 @@ +<!doctype html> +<html lang="en"> + +<head> + <title>Mark's Kitchen</title> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <link rel="stylesheet" type="text/css" href="/css/styles.css"> + <link rel="shortcut icon" href="/favicon.ico"> +</head> + +<body> + + <h1> + <a class="navigation" href="/" title="marks.kitchen"><</a> + Miscellany + </h1> + {{> navigation}} + <div> + <a href="projects" class="btn btn-primary">Projects</a> + </div> + <div> + <a href="chess" class="btn btn-primary">Chess</a> + </div> + <div> + <a href="word-square" class="btn btn-primary">Word Play</a> + </nav> +</body> + +</html>
\ No newline at end of file |