wonderfulfrog.com/src/pages/tag.html
Devin Haska 5c03a5be36
All checks were successful
Build and Deploy / build_and_deploy (push) Successful in 1m19s
feat(posts): Update various post related layouts
2025-09-14 13:49:09 -07:00

20 lines
487 B
HTML

---
pagination:
data: collections.postsByTag
size: 1
alias: tag
filter:
- post
permalink: /tags/{{ tag | slugify }}/index.html
eleventyComputed:
title: "Tag: \"{{ tag }}\""
description: Browse all posts tagged with "{{ tag }}".
---
{% from "macros/posts.njk" import list %}
<p>
All posts tagged with "{{ tag }}", or go back to <a href="/tags">all tags</a>.
</p>
<section class="flow">
{{ list(collections.postsByTag[tag] | reverse) }}
</section>