get the 'all tags' function to work

This commit is contained in:
Bun 2025-07-01 22:06:38 -04:00
parent 2bea4c6dfd
commit 9fddbf763f
3 changed files with 34 additions and 22 deletions

View file

@ -4,15 +4,21 @@
<h1 class="title">
{{ section.title }}
</h1>
<p class="larger">sort by <a href="/tags">tags</a>.</p>
<ul>
<!-- If you are using pagination, section.pages will be empty.
You need to use the paginator object -->
{% for page in section.pages %}
<li>
<a href="{{ page.permalink | safe }}">{{ page.title }}</a> - by {{ page.authors }},
{{ page.date }}
<a href="{{ page.permalink | safe }}">{{ page.title }}</a> - by {{ page.authors }}
<br>
{{ page.description }}
<br>
written: {{ page.date }}
<br>
tags: {{ page.taxonomies.tags }}
</li>
{% endfor %}
</ul>