Rename templates to njk It's specified in the nunjucks documentation. Using it allows editors to understand the syntax better
Alan Pearce alan@alanpearce.eu
Sun, 18 Jun 2017 18:23:28 +0200
4 files changed, 5 insertions(+), 1 deletions(-)
M src/index.js → src/index.js
@@ -13,7 +13,11 @@ const Posts = require('./modules/posts.js') const posts = Posts.getFolder(process.env.POST_DIR) -app.use(view(`${__dirname}/views`)) +app.use( + view(`${__dirname}/views`, { + extname: 'njk' + }) +) const postsArray = Array.from(posts.entries()) router.get('/', async function (ctx) {