diff --git a/src/index.js b/src/index.js index 4b27792b..d7624ca5 100644 --- a/src/index.js +++ b/src/index.js @@ -49,9 +49,9 @@ addListPage(posts); const tagMap = gatherTags(posts); console.log(tagMap); -tagMap.forEach((value, key) => { +/*tagMap.forEach((value, key) => { console.log(`Key: ${key}, Values: ${value}`); -}); +});*/ createTagListPage(tagMap); @@ -60,7 +60,6 @@ for (let [tag, posts] of tagMap) { createTagPage(tag, posts); } - // Create about page const about = aboutMethod.readAbout(config.dev.about); aboutMethod.createAbout(about);