My demo site is here.
The header menu has links for Flights, Maintenance, and Stuff. Those links were created by making folders (directories) located at...
/public_html/user/pages/02.flights/
/public_html/user/pages/03.maintenance/
/public_html/user/pages/04.stuff/
and inside each folder was a default.md file with the following code...
---
redirect: '/category:flights'
---
---
redirect: '/category:maintenance'
---
---
redirect: '/category:stuff'
---
My question: Is this to proper way to be creating header links to display category pages? I'm guessing there's a more elegant way to do this, but I can't figure it out.