Hot on the heels of Journal: "On This Day", I’m looking for a way to dynamically query headers across the space. Specifically, if I’m on a header 2024-11-09
on one page, I’d like to be able to find all other headers with the same name around the space. I can easily find those with a query
(header where name = '2024-11-09'
), but I’d like to do that without typing the query in. I’m wondering what’s the best way to go about this; options include:
- Create a thing like the page picker, but for headers.
- Create a thing like the search page (…a
pageNamespace
?), but for headers - Create my own “query headers” page, but somehow get a dynamic parameter, e.g. from URL parameters
Any tips on whether any of these can be done reasonably/idiomatically?