Files
2024-12-06 15:31:57 -07:00

1.1 KiB

layout, title, permalink
layout title permalink
page Topics /topics/
All {% assign all_tags = site.documents | map: "tags" | compact | uniq | sort %} {% for tag in all_tags %} {{ tag }} {% endfor %}
{% for tag in all_tags %}

{{ tag }}

    {% for item in site.documents %} {% if item.tags contains tag %}
  • {{ item.title }}
  • {% endif %} {% endfor %}
{% endfor %}
<script> function showTag() { const hash = window.location.hash.slice(1); const sections = document.querySelectorAll('.tag-section'); sections.forEach(section => { section.style.display = !hash || section.dataset.tag === hash ? 'block' : 'none'; }); } window.addEventListener('hashchange', showTag); showTag(); </script> <style> #tag-nav { margin-bottom: 2em; } .tag-link { margin-right: 1em; } </style>