I have the following page, called Quick Notes, linked on my Home page which allows me to quickly go to any quick link file created, as well as see the content of all of them.
This is your {[Quick Note]} inbox.
```query
page where name =~ /^Inbox\// render [[Library/Core/Query/Page]] order by name desc
```
# All Quick Notes
```template
{{#each { page where name =~ /^Inbox\// order by name desc } }}
**-----------------------------**
## {{replace(name, "Inbox/", "")}}
**-----------------------------**
{{readPage(name)}}
---
---
{{/each}}
```