I’m cheating a little by using a function readPage
(which reads in the content of a page) that I just pushed to Edge a few minutes ago, but this is how I’d do this with the new template engine:
```template
{{#each { page where name =~ /^Journal\/Week\// order by name desc } }}
## {{replace(name, "Journal/Week/", "Week of: ")}}
{{readPage(name)}}
{{/each}}
```
Better huh?
Actually this would be an excellent use case of Proposal: Virtual Page Templates