feat: small content update
This commit is contained in:
parent
a5d301f095
commit
92ea3dfb7b
3 changed files with 5 additions and 1 deletions
|
@ -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 ]">
|
||||
|
|
|
@ -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" %}
|
||||
|
|
|
@ -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" %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue