feat: small content update

This commit is contained in:
Devin Haska 2024-02-20 13:07:42 -08:00
parent a5d301f095
commit 92ea3dfb7b
3 changed files with 5 additions and 1 deletions

View file

@ -5,6 +5,7 @@ title: Catalogue
---
<h1>Catalogue</h1>
<p>A collection of my thoughts on various forms of media that I consume.</p>
{% set items = collections.catalogue | reverse %}
{% set catalogueTypes = collections.catalogueByType | keys %}
<ul class="[ flex list-none gap-0.5 p-0 ]">

View file

@ -6,7 +6,7 @@ title: Posts
<h1>All posts</h1>
<p>
View all <a href="/tags">tags</a>
Browse all of my posts, or narrow things down <a href="/tags">via tags</a>.
</p>
{% set items = collections.post | reverse %}
{% include "partials/archive.html" %}

View file

@ -10,5 +10,8 @@ permalink: /tags/{{ tag | slugify }}/index.html
---
<h1>Tag: {{ tag }}</h1>
<p>
All posts tagged with "{{ tag }}", or go back to <a href="/tags">all tags</a>.
</p>
{% set items = collections.postsByTag[ tag ] %}
{% include "partials/archive.html" %}