From 476a7a53ff782a25fa4bda06c936fcbff488e28e Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 5 Jun 2023 08:45:57 -0700 Subject: [PATCH] feat: add back links to post pages; add tags to post pages --- config/filters.js | 12 ++++++++++++ src/_includes/post-tags.liquid | 9 +++++++++ src/_includes/post.liquid | 10 +++++++--- tailwind.css | 8 ++++++++ 4 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 src/_includes/post-tags.liquid diff --git a/config/filters.js b/config/filters.js index 47a5b5be..ec6b0ecf 100644 --- a/config/filters.js +++ b/config/filters.js @@ -57,4 +57,16 @@ module.exports = { return data }, + pageNumberOf: (postUrl, collection, pageSize = 10) => { + const index = collection.findIndex((p) => p.data.page.url === postUrl) + if (index === -1) throw new Error(`${postUrl} not found in collection`) + return Math.ceil(collection.length / pageSize) - Math.ceil(index / pageSize) + }, + blogBackLink: (postUrl, collection, pageSize = 10) => { + const index = collection.findIndex((p) => p.data.page.url === postUrl) + if (index === -1) throw new Error(`${postUrl} not found in collection`) + const pageNumber = Math.ceil(collection.length / pageSize) - Math.ceil(index / pageSize) + if (pageNumber === 0) return '/' + return `/${pageNumber}/` + }, } diff --git a/src/_includes/post-tags.liquid b/src/_includes/post-tags.liquid new file mode 100644 index 00000000..d55522d7 --- /dev/null +++ b/src/_includes/post-tags.liquid @@ -0,0 +1,9 @@ +
+ {% for tag in tags %} + {% if tag != "posts" %} + + {{ tag }} + + {% endif %} + {% endfor %} +
\ No newline at end of file diff --git a/src/_includes/post.liquid b/src/_includes/post.liquid index e710afa9..40b5eebc 100644 --- a/src/_includes/post.liquid +++ b/src/_includes/post.liquid @@ -1,18 +1,22 @@ --- layout: main --- - {% include "header.liquid" %}

{{ title }}

-
- +
{{ content }}
+{% include "post-tags.liquid" %} {% include "webmentions.liquid" %} {% include "author.liquid" %} diff --git a/tailwind.css b/tailwind.css index 5862be52..d89f0426 100644 --- a/tailwind.css +++ b/tailwind.css @@ -105,6 +105,14 @@ pre { background: theme(colors.purple.600); } +.tag--button.tag--button__small { + @apply py-1; + @apply px-2; + @apply mr-2; + @apply mb-2; + @apply text-sm; +} + .dark .tag--button { color: theme(colors.gray.900); background: theme(colors.purple.400);