feat(tags): this adds support for post, link, book, show and movie tags with a tag list view and per tag pages

This commit is contained in:
Cory Dransfeldt 2025-04-16 18:59:47 -07:00
parent 3d866262ca
commit 6fdc0b56b9
No known key found for this signature in database
35 changed files with 500 additions and 70 deletions

View file

@ -26,6 +26,9 @@ permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
<h3>
<a href="{{ post.url }}">{{ post.title }}</a>
</h3>
{% render "blocks/tags.liquid",
tags:post.tags
%}
<p>{{ post.description | markdown }}</p>
</article>
{% endfor %}

View file

@ -13,9 +13,10 @@ schema: blog
{{ post.date | date: "%B %e, %Y" }}
</time>
</aside>
<h3>
{{ post.title }}
</h3>
<h3>{{ post.title }}</h3>
{% render "blocks/tags.liquid",
tags:post.tags
%}
<div>
{% render "blocks/banners/old-post.liquid",
isOldPost:post.old_post