All checks were successful
Build and Deploy / build_and_deploy (push) Successful in 1m19s
20 lines
487 B
HTML
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>
|