diff --git a/_includes/components/post-type-nav.njk b/_includes/components/post-type-nav.njk
new file mode 100644
index 0000000..c5b46e3
--- /dev/null
+++ b/_includes/components/post-type-nav.njk
@@ -0,0 +1,9 @@
+
diff --git a/articles.njk b/articles.njk
index 8a8396d..20f1b1d 100644
--- a/articles.njk
+++ b/articles.njk
@@ -22,6 +22,9 @@ permalink: "articles/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNu
({{ collections.articles.length }} total)
+ {% set activePostType = "articles" %}
+ {% include "components/post-type-nav.njk" %}
+
{% if paginatedArticles.length > 0 %}
{% for post in paginatedArticles %}
diff --git a/blog.njk b/blog.njk
index 21b4acb..ef8733a 100644
--- a/blog.njk
+++ b/blog.njk
@@ -22,13 +22,7 @@ permalink: "blog/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumber
{% if paginatedPosts.length > 0 %}
-
+ {% include "components/post-type-nav.njk" %}
{% for post in paginatedPosts %}
{# Detect post type from frontmatter properties #}
diff --git a/bookmarks.njk b/bookmarks.njk
index 81c9261..c33e422 100644
--- a/bookmarks.njk
+++ b/bookmarks.njk
@@ -22,6 +22,9 @@ permalink: "bookmarks/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageN
({{ collections.bookmarks.length }} total)
+ {% set activePostType = "bookmarks" %}
+ {% include "components/post-type-nav.njk" %}
+
{% if paginatedBookmarks.length > 0 %}
{% for post in paginatedBookmarks %}
diff --git a/likes.njk b/likes.njk
index 90f6485..dc65db1 100644
--- a/likes.njk
+++ b/likes.njk
@@ -22,6 +22,9 @@ permalink: "likes/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumbe
({{ collections.likes.length }} total)
+ {% set activePostType = "likes" %}
+ {% include "components/post-type-nav.njk" %}
+
{% if paginatedLikes.length > 0 %}
{% for post in paginatedLikes %}
diff --git a/notes.njk b/notes.njk
index 74144a0..9fb4cb2 100644
--- a/notes.njk
+++ b/notes.njk
@@ -22,6 +22,9 @@ permalink: "notes/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumbe
({{ collections.listedNotes.length }} total)
+ {% set activePostType = "notes" %}
+ {% include "components/post-type-nav.njk" %}
+
{% if paginatedNotes.length > 0 %}
{% for post in paginatedNotes %}
diff --git a/photos.njk b/photos.njk
index f6af5ee..ef0d79f 100644
--- a/photos.njk
+++ b/photos.njk
@@ -22,6 +22,9 @@ permalink: "photos/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumb
({{ collections.photos.length }} total)
+ {% set activePostType = "photos" %}
+ {% include "components/post-type-nav.njk" %}
+
{% if paginatedPhotos.length > 0 %}
{% for post in paginatedPhotos %}
diff --git a/replies.njk b/replies.njk
index 1010d6c..6f5a138 100644
--- a/replies.njk
+++ b/replies.njk
@@ -22,6 +22,9 @@ permalink: "replies/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNum
({{ collections.replies.length }} total)
+ {% set activePostType = "replies" %}
+ {% include "components/post-type-nav.njk" %}
+
{% if paginatedReplies.length > 0 %}
{% for post in paginatedReplies %}
diff --git a/reposts.njk b/reposts.njk
index 7b6358c..462e162 100644
--- a/reposts.njk
+++ b/reposts.njk
@@ -22,6 +22,9 @@ permalink: "reposts/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNum
({{ collections.reposts.length }} total)
+ {% set activePostType = "reposts" %}
+ {% include "components/post-type-nav.njk" %}
+
{% if paginatedReposts.length > 0 %}
{% for post in paginatedReposts %}