diff options
Diffstat (limited to 'src/templates.js')
-rw-r--r-- | src/templates.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/templates.js b/src/templates.js index 07a774c..7f22bed 100644 --- a/src/templates.js +++ b/src/templates.js @@ -57,5 +57,25 @@ module.exports = { Some highlights (and lowlights) of breadmaking`, post: `</body> </html>` + }, + blog: { + pre: `<!doctype html> + <html lang="en"> + + <head> + <title>Mark's Kitchen - Blog</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> + Blog + </h1>`, + post: `</body> + </html>` } }
\ No newline at end of file |