I’m tagging my pages with things such as foo and bar. Now I’d like to use pages /tags/foo/_index.md to provide more information about tag foo, such as (for foo)
---
title: A weird word
---
and (for bar)
---
title: Another weird word
---
By default, it appears that a range over all tags orders things by the title that I just provided. But I’d like to order things by tag name (in other words, bar comes before foo, instead of A weird word comes before Another weird word).
I tried:
range sort .Pages ".Data.Term"
and variations but no cigar. How do I do this correctly?