From d21ef9bf29465db18dce1ee6d4fcbdece655ba87 Mon Sep 17 00:00:00 2001 From: mattkae Date: Tue, 22 Nov 2022 17:33:47 -0500 Subject: Some new tags, unused for now --- _posts/processPosts.js | 14 +++++++++++++- posts.css | 18 ++++++++++++------ posts.html | 9 +++++++++ posts/tag_books.html | 34 ++++++++++++++++++++++++++++++++++ posts/tag_food.html | 34 ++++++++++++++++++++++++++++++++++ posts/tag_programming.html | 34 ++++++++++++++++++++++++++++++++++ 6 files changed, 136 insertions(+), 7 deletions(-) create mode 100644 posts/tag_books.html create mode 100644 posts/tag_food.html create mode 100644 posts/tag_programming.html 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) {

Tags

- ${tags.map(createTag)} + ${tags.map(createTag).join('\n')}
button { - padding: 8px; +#tag_list button { + padding: 16px; cursor: pointer; + border: 1px solid transparent; + border-radius: 3px; + font-family: inherit; + font-size: 16px; + width: 100%; + height: 100%; } #post_list { diff --git a/posts.html b/posts.html index 14a691c..36ef212 100644 --- a/posts.html +++ b/posts.html @@ -29,6 +29,15 @@ + + + + + + + + + + + + + + + + Matthew Kosarek + + + +
+

Matthew Kosarek

+ +
+ + + +
+

Posts

+ +
+ + diff --git a/posts/tag_food.html b/posts/tag_food.html new file mode 100644 index 0000000..332900c --- /dev/null +++ b/posts/tag_food.html @@ -0,0 +1,34 @@ + + + + + + + + + Matthew Kosarek + + + +
+

Matthew Kosarek

+ +
+ + + +
+

Posts

+ +
+ + diff --git a/posts/tag_programming.html b/posts/tag_programming.html new file mode 100644 index 0000000..332900c --- /dev/null +++ b/posts/tag_programming.html @@ -0,0 +1,34 @@ + + + + + + + + + Matthew Kosarek + + + +
+

Matthew Kosarek

+ +
+ + + +
+

Posts

+ +
+ + -- cgit v1.2.1