added slug filter to tags

This commit is contained in:
Matt DeCamp 2021-12-08 20:53:11 -05:00
parent 3f7fe7964c
commit 5fd211ad85

View file

@ -6,7 +6,9 @@ pagination:
size: 1 size: 1
filter: all filter: all
alias: tag alias: tag
permalink: /tags/{{ tag }}/ permalink: /tags/{{ tag | slug }}/
eleventyComputed:
title: Tagged “{{ tag }}”
--- ---
<h2>Posts filed under “{{ tag }}”</h2> <h2>Posts filed under “{{ tag }}”</h2>