diff --git a/src/content/pages/catalogue.html b/src/content/pages/catalogue.html index b64ee5a..c430bd8 100644 --- a/src/content/pages/catalogue.html +++ b/src/content/pages/catalogue.html @@ -5,6 +5,7 @@ title: Catalogue ---
A collection of my thoughts on various forms of media that I consume.
{% set items = collections.catalogue | reverse %} {% set catalogueTypes = collections.catalogueByType | keys %}- View all tags + Browse all of my posts, or narrow things down via tags.
{% set items = collections.post | reverse %} {% include "partials/archive.html" %} diff --git a/src/content/pages/tag.html b/src/content/pages/tag.html index a5ad4fd..206f190 100644 --- a/src/content/pages/tag.html +++ b/src/content/pages/tag.html @@ -10,5 +10,8 @@ permalink: /tags/{{ tag | slugify }}/index.html ---+ All posts tagged with "{{ tag }}", or go back to all tags. +
{% set items = collections.postsByTag[ tag ] %} {% include "partials/archive.html" %}