diff options
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 |