summaryrefslogtreecommitdiff
path: root/_posts/processPosts.js
diff options
context:
space:
mode:
Diffstat (limited to '_posts/processPosts.js')
-rw-r--r--_posts/processPosts.js14
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`}