summaryrefslogtreecommitdiff
path: root/src/tags.njk
blob: 582ad6b180f79ad358316b7b5d59122ba06db896 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
pagination:
  data: collections
  size: 1
  alias: tag
  filter:
    - all
    - post
    - tagList
permalink: /tags/{{ tag }}/
layout: layout.njk
---

<h1>{{ tag }}</h1>
<hr>

<ul>
{% for post in collections[tag] | reverse %}
  <li><a href="{{ post.url }}">{{ post.data.title }}</a></li>
{% endfor %}
</ul>
<hr>
<a href="/">Home</a>