This commit is contained in:
Leon Liu 2024-11-19 09:55:00 +00:00
parent 061a9370f9
commit 5f9971850c
2 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,7 @@
```template
{{#each {event order by scheduled}}}
{{.}}
| Scheduled | Ref |
|---|---|
{{#each {event where scheduled order by scheduled}}}
| {{niceDate(scheduled)}} | [[{{ref}}]] |
{{/each}}
```

View File

@ -1,13 +1,14 @@
# Leons Notes
## Events
```query
event select ref, scheduled
```template
{{template([[Events]])}}
```
## Life Routines
```template
{{#each {page where tags = 'life-routine'}}}
{{#each life-routine}}
* [[{{name}}]]
{{/each}}
```