1.1 KiB
1.1 KiB
layout, title, permalink
layout | title | permalink |
---|---|---|
page | Topics | /topics/ |
{% for tag in all_tags %}
{% 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>
{{ tag }}
-
{% for item in site.documents %}
{% if item.tags contains tag %}
- {{ item.title }} {% endif %} {% endfor %}