diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-08-13 10:44:19 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-08-13 10:44:19 -0500 |
commit | 09fdcb05b2c1fa7a51e4b4110c7317b5d0e361f4 (patch) | |
tree | c8cda2ebf13c2ef091f509b8d18136db62e9b360 /src/templates.js | |
parent | c1d460f2b88a102be05ddeb04af57db90c9f92bf (diff) |
Remove client JS requirement from /bread
Diffstat (limited to 'src/templates.js')
-rw-r--r-- | src/templates.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/templates.js b/src/templates.js index b1cde30..07a774c 100644 --- a/src/templates.js +++ b/src/templates.js @@ -36,5 +36,26 @@ module.exports = { <h1>Welcome to Mark's Kitchen</h1>`, post: `</body> </html>` + }, + bread: { + pre: `<!doctype html> + <html lang="en"> + + <head> + <title>Mark's Kitchen - Bread</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> + Bread + </h1> + Some highlights (and lowlights) of breadmaking`, + post: `</body> + </html>` } }
\ No newline at end of file |