Page templates in v2

Sounds good. I figured out a nice way to do it.

Follow up question. Is there a way to retain the query in a page template? When I make a new page from this template:

---
command: "Journal: Daily Note"
suggestedName: "Journal/Daily/${date.today()}"
confirmName: false
frontmatter: "
  parentWeek: Journal/Weekly/${date.year()}-W${date.weekNumber()}\n\
  yesterday: Journal/Daily/${date.yesterday()}
"
openIfExists: true
tags: meta/template/page
---
|^|
${query[[
  from p = index.tag "page"
  select {
    name = p.name,
    modified = p.lastModified
  }
  limit 3
]]}

Its output is:

---
parentWeek: Journal/Weekly/2025-W16
yesterday: Journal/Daily/2025-04-16
---

{{name = CONFIG, modified = 2025-04-17T13:48:50.151}, {name = Functions/Date, modified = 2025-04-17T16:40:54.778}, {name = Journal/Daily Note, modified = 2025-04-17T18:00:33.149}}

Ideally I was hoping for a way to be able to use the page template to put a query in the page created by the template, not have it be evaluated.