diff options
author | mattkae <mattkae@protonmail.com> | 2022-11-22 17:33:47 -0500 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2022-11-22 17:33:47 -0500 |
commit | d21ef9bf29465db18dce1ee6d4fcbdece655ba87 (patch) | |
tree | e3162fd55ad62730087c9743fe3b05a551d2acf2 /_posts | |
parent | 76d7516960aa0ea570fa00000e83bfa283b2dbc2 (diff) |
Some new tags, unused for now
Diffstat (limited to '_posts')
-rw-r--r-- | _posts/processPosts.js | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/_posts/processPosts.js b/_posts/processPosts.js index d4b2a2e..15cf4e5 100644 --- a/_posts/processPosts.js +++ b/_posts/processPosts.js @@ -7,6 +7,18 @@ const tags = [ { id: 'personal', title: 'Personal 👨' + }, + { + id: 'programming', + title: 'Programming 💻' + }, + { + id: 'books', + title: 'Books 📖' + }, + { + id: 'food', + title: 'Food 🍲' } ] @@ -119,7 +131,7 @@ function createPostPage(outputFile, postFilter) { <h2>Tags</h2> <div id='tag_list'> - ${tags.map(createTag)} + ${tags.map(createTag).join('\n')} </div> </section`} |